When I do git rebase branch1
in my branch1-local
I get conflicts. I solve the conflict, do git add <conflicted-add>
and then do git rebase --continue
as git asks me to do. After that a new commit is applied. A new conflict shows up. But is the same conflict again in the same file. I do it again, git add
, the git rebase --continue
, and then it all repeats again until I repeat this for each commit being rebased on.
Why rebase is having me redo the same conflict resolution over and over again?