In Git, is it possible to change the default conflict markers to something else?
By default they look like this:
<<<<<<< HEAD
[some code]
||||||| merged common ancestors
[some code]
=======
[some code]
>>>>>>> some commit message
For instance, I was thinking it might be nice in C# files to have them start with comment characters:
// <<<<<<< HEAD
That way compile errors from the conflict markers wouldn't get in the way of compile errors from the code itself while I'm resolving a merge.
Is there a way to do this?
(Please don't give an answer that says "You shouldn't do this." I already know the ramifications, and I'm OK with them. Git is designed for flexibility.)