我的github存储库有一个主分支和一个开发分支。
我创建了一个本地文件夹并使用了git init
。
然后我通过说git remote set-url <my repo's url>
现在我在本地文件夹中添加了一个文件来测试提交。在我添加之后我说了这个:
git add .
git commit -m 'test commit'
git push origin development
但后来我得到一个错误,说...
error: src refspec development does not match any. error: failed to push some refs to '<my git url>'
如何将文件添加到特定分支?
答案 0 :(得分:1)
您的分支是development
吗?如果您想将当前HEAD
推送到名为development的新远程分支,请尝试git push origin HEAD:development
。