什么可能导致'git push'尝试并提交两个分支?我有自己的分支,我正在研究共享仓库和主分支.现在我只是想推到我的个人分支,经历了很好,但它也试图推动掌握并被拒绝.看起来像这样:
foo$ git push Counting objects: 38, done. Delta compression using 2 threads. Compressing objects: 100% (19/19), done. Writing objects: 100% (21/21), 9.73 KiB, done. Total 21 (delta 14), reused 0 (delta 0) To ssh://example.com/project.git 8184634..86b621e mybranch -> mybranch ! [rejected] master -> master (non-fast forward) error: failed to push some refs to 'ssh://example.com/project.git'
我的配置如下所示:
remote.origin.url=ssh://example.com/project.git remote.origin.fetch=+refs/heads/*:refs/remotes/origin/* branch.master.remote=origin branch.master.merge=refs/heads/master branch.mybranch.remote=origin branch.mybranch.merge=refs/heads/mybranch
埃斯科指出,它正在推动两者,因为它们在我的配置中.如果我想要同时推动两者,而不是同时推动怎么办?当我检查mybranch并且git push时,我显然意味着推动mybranch而不是掌握.有时候我会检查master,编辑代码,并且还想提交/推送它.有两种方法可以共存吗?
在git push
没有任何参数的情况下使用时,它将推送具有相同名称的相应远程分支的所有本地分支.由于本地资源库设有分公司master
和mybranch
,也是远程仓库设有分支机构master
和mybranch
,Git会推动他们两个.
如果你只想推送一个分支,你可以明确地告诉Git你要推送哪个分支: git push origin mybranch
如果你想推送master,你可以先从master中拉出来解决这个错误.Git抱怨合并是非快进的,因为自上次你从主人那里撤出以来,其他人已经将提交推送到掌握.