执行以下操作后,我发生了一个奇怪的合并冲突,其中包含自己的更改:
git fetch --all # to get current master
git rebase master # succeeded without warning
git commit # after doing some changes
git push # here I get error that I need to pull
git pull # and here I've got conflict with my own changes
我已经修改了与重新设置基准后刷新的文件相同的文件,但是我已经从本地远程进行了所有更改。迁移后,拉力似乎与我更改的状态与远程更改的状态发生了冲突,尽管我已经将他放在了本地分支中。
这是某种预期的情况,还是某些越野车的行为?
我是否希望在重新设置基准后始终拉动?