如何将我的Master分支推到我的旧分支上?
我正在尝试使用:
git push origin master:my_branch但我不断收到错误消息
! [rejected] master -> my_branch (non-fast-forward)
error: failed to push some refs to
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方面还是一个新手。我正在尝试使用rebase,但是我很难理解它。谁能帮我。任何帮助将不胜感激。
答案 0 :(得分:0)
您要推送到的分支具有xou在本地没有的提交。
如果您想拥有所有提交,则可以先执行git pull my_branch origin
来合并它们(并解决可能的冲突)。
如果要覆盖上游分支,可以使用git push -f origin master:my_branch
强行推入将覆盖其他用户的更改。如果只想在此期间没有其他用户推送到该分支,则可以执行git push --force-with-lease origin master:my_branch
。