问题
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?
回答1:
As @Xlee said, rebase
can result on changing the hash of the commit and messing up with history.
There are some other possibilities such as :
- featureX
have been force pushed
- Someone created a commit which changes the moduleA/foo
file and reverted it on master
- you GIT is playfull and likes to tease you.
Your choice
来源:https://stackoverflow.com/questions/41064345/merge-conflict-in-a-file-that-wasnt-modified-in-either-branch