我在分支feature_swap
,我做了一些更改,但我没有足够的信心在feature_swap
分支中推送这些更改。所以我尝试使用
feature_swap_experiment
git branch feature_swap_experiment
git checkout feature_swap_experiment
现在我想推送到feature_swap_experiment
我已经尝试过git push origin feature_swap_experiment
哪个无法正常工作
error: src refspec feature_swap_experiment does not match any.
error: failed to push some refs to 'https://uname@bitbucket.org/uname/project.git'
答案 0 :(得分:0)
git push origin feature_swap_experiment
应该是正确的命令。您的遥控器是否有可能无法正确设置?
此外,git branch -a
应该为您提供所有分支的列表,本地和远程,因此您应该能够快速查看是否已正确设置。
这可能会有所帮助: How do you create a remote Git branch?
编辑:查看您添加到问题中的错误消息后,您可能会遇到与此处所述相同的问题:Error when "git push" to github
所以在你的情况下,你会运行:
git push https://uname@bitbucket.org/uname/project.git HEAD:feature_swap_experiment