我正在努力正确地切换到我的版本库的分支版本。我正在按照here的说明进行操作,但是似乎遇到了一些错误。
我能够跑步
git remote add my-fork git@github...my-fork.git
git fetch my-fork
但是当我尝试
git push my-fork
我得到了错误
To github.com:...my-fork.git
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'git@github.com:...my-fork.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
我尝试了许多在线建议,包括
git pull
git pull --rebase
git fetch origin
git merge origin master
这些都给出了消息“已经更新”。 我该如何解决?
答案 0 :(得分:0)
类似fork的声音与正在使用的存储库的提交不同。
您可以使用git push -f
强制您的远程服务器与本地存储库匹配。
请注意,如果本地存储库中不存在这些提交,则会丢失您在叉子上的提交。