当我在处理我的Git存储库克隆时,远程内容发生了变化:
$ hg push
...
abort: refs/heads/master changed on the server, please pull and merge
before pushing
我想要将提交从我的本地副本推送到不同的远程分支,而不是合并。我该怎么做?
答案 0 :(得分:2)
自己找到它。
hg bookmark fixes # copy content to new git branch 'fixes'
hg bookmark --delete master # remove old master branch, to avoid abort error
hg push
将提交移动到git
本身的不同分支更容易。