I put git and, for some reason I do not understand, he refuses to show changes in the file in which the merge conflict occurred. There is no <<<<<<< HEAD and it takes the version of the file from the current branch.
How to fix this?
in order to interrupt an incomplete merge , you can use, for example:
$ git merge --abort Unlike svn, git reports a conflict when any file is edited in both merged branches. In this case, it may be that both edits were the same, and there really is no conflict. But git thinks that the user needs to be notified, because user smarter.
Source: https://ru.stackoverflow.com/questions/436278/
All Articles
git status? - D-side