По какой-то причине в последнее время каждый раз, когда я получаю и получаю конфликт слияния, при запуске git mergetool
выдается «Нет необходимости в слиянии файлов»:
$ git pull
First, rewinding head to replay your work on top of it...
Applying: replaced home button with Cancel
Using index info to reconstruct a base tree...
Falling back to patching base and 3-way merge...
error: Your local changes to the following files would be overwritten by merge:
Classes/Controllers/HomeController.m
Please, commit your changes or stash them before you can merge.
Aborting
Failed to merge in the changes.
Patch failed at 0002 moved rollback into cancel button in log watching
When you have resolved this problem run "git rebase --continue".
If you would prefer to skip this patch, instead run "git rebase --skip".
To check out the original branch and stop rebasing run "git rebase --abort".
$ git mergetool
No files need merging
Если я запускаю git rebase --abort
и вытягиваю снова, то же самое происходит в другом конфликте, или извлечение завершается успешно без конфликта слияния. Между этими попытками нет никаких отдаленных изменений, поэтому конфликт не исчез.
Вот как настроены эта ветка и пульт:
[branch "develop"]
remote = origin
merge = refs/heads/develop
rebase = true
[remote "origin"]
url = <my repo url>
fetch = +refs/heads/*:refs/remotes/origin/*