When I try to rebase branch featureX
on master
, I get a conflict in a file (let's call it moduleA/foo
) that was not modified in either master
or featureX
since they diverged! I checked that with the following log command:
git log master...featureX -- moduleA/foo
and the result was empty (no commit on either branch touched the file since the branches diverged).
How is this at all possible and what can I do to avoid such misleading conflicts?