我创建了一个新的回购Bitbucket
并遵循规定的非常简单的步骤.首先,我git init
在我的本地文件夹中进行版本控制.然后我做了:
git remote add origin https://my_account@bitbucket.org/my_account/my_project.git
那很有效.最后一步是:
git push -u origin master
我获得了以下内容:
error: src refspec master does not match any. error: failed to push some refs to 'https://my_account@bitbucket.org/my_account/my_project.git'
为什么我会收到此错误?
如果有人仍然得到这个错误,请尝试git add .
和git commit -m "init"
之前git push origin master
.希望这有用.