When there's a merge conflict in Git, junk like the following is inserted into the conflicting files. Three questions:

  1. How do you read these annotations?
  2. What are some strategies to use when fixing these merge conflicts?
  3. Is there a GUI tool for Mac that knows how to read these files and display the two versions side-by-side to make it easier to fix the problem?

enter image description here

Note: In case it's relevant, I am using GitHub's Mac GUI client.

link|improve this question

1  
possible duplicate of How do I fix merge conflicts in Git? - #1 link if you google "git merge conflicts" – Brian Roach Feb 9 at 8:05
feedback

3 Answers

up vote 1 down vote accepted
<<<< HEAD #Where the conflict starts

#Previous Revision

========== # The point where things look iffy

#Things that changed

>>>>> New Commit # Point where the conflict ends

Mac's Xcode comes with FileMerge which can be accessed on the command line with opendiff.

git mergetool -t opendiff

link|improve this answer
feedback

Everything between <<<<<< and ====== comes from the HEAD revision, which is the committed state before starting the merge operation (git merge will complain if the tree is dirty, so it should be equivalent to your working directory).

The parts between ====== and >>>>>> come from the version being merged. The text after the >>>>>> is the comment of the commit that introduced the conflicting change.

That there is a conflict marker means that the base version of this part of the file is different from both "new" versions. The base version (last common ancestor) is not shown.

If you want a more comfortable merge and have a GUI available, I suggest you take a look at kdiff3.

link|improve this answer
Thanks, Simon. Is there not some GUI app that can open these files and display the HEAD and the merged version side-by-side? – Christopher James Calo Feb 9 at 8:12
Follow the link suggested by @Brian above.... – Peter Liljenberg Feb 9 at 8:19
Can you point me to which information in that link is useful? The git manual is inaccessible to me. – Christopher James Calo Feb 9 at 8:39
@ChristopherJamesCalo, kdiff3 is a GUI tool. – Simon Richter Feb 9 at 8:59
feedback

You can configure a (graphical) merge tool and use that tool to do the conflict resolution.

Also have a look at the git mergetool command - if you have one of the pre-defined tools installed or have configured some other tool, it will open up the tool for resolution http://schacon.github.com/git/git-mergetool.html

If you are interested in GUI tools, you need not worry about what the notations really mean, as the GUI tool will help you to easily make the resolutions. Just understand that the parts marked with ===== and >>>>> are the conflict sections.

link|improve this answer
Can you give me an example of a Mac GUI app that can read these files and explain how to open them? I've tried opening these files in different diff and merge tools, and they just open as a single text file instead of being interpreted as two files. (Which is the whole purpose of the conflict markers.) – Christopher James Calo Feb 9 at 8:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.