我的本地主分支和origin / master分支仅仅转移了1次,我希望将我的主人转移到origin / master,所以我这样做了:
git rebase origin / master
这给了我一个冲突,我解决了它并提交了更改,但这让我陷入了一种超脱状态。
然后我跑:
git rebase --continue
它向我显示了这条消息:
Applying: Change endpoint url to point to new one
No changes - did you forget to use 'git add'?
If there is nothing left to stage, chances are that something else
already introduced the same changes; you might want to skip this patch.
When you have resolved this problem, run "git rebase --continue".
If you prefer to skip this patch, run "git rebase --skip" instead.
To check out the original branch and stop rebasing, run "git rebase --abort".
似乎在rebase期间生成了一个补丁文件,
这是什么原因以及我做错了什么?
谢谢!
答案 0 :(得分:0)
仔细检查邮件。远程存储库中是否已存在相同的更改?如果是这样,请跳过应用该更改,就像它建议的那样。
“如果没有任何东西可以上台,那么可能还有别的东西 已经引入了相同的变化;你可能想跳过这个补丁。“