After I got message about existing conflicts, I found that files with conflicts contain marks like
<<<<<<<<<<<<<<<
or
>>>>>>>>>>>>>>>
Is this correct? What is the name of this file format?
After I got message about existing conflicts, I found that files with conflicts contain marks like
<<<<<<<<<<<<<<<
or
>>>>>>>>>>>>>>>
Is this correct? What is the name of this file format?
Conflict marks <<<<
, ====
and >>>>
could be a result of a conflict in many git
commands: rebase
, merge
, cherry-pick
, apply
. The result is still a text file and you can open it in any text editor. E.g, I usually use vim
instead of mergetool
.