vote up 24 vote down star
14

Do you know a good way to explain how to resolve merge conflicts in git?

flag

6 Answers

vote up 9 vote down check

The Git manual has some very good instructions, including helpful examples, on handling merge conflicts.

link|flag
1  
Documentation is pretty impenetrable for the average user. – picardo Oct 29 at 20:34
In a few cases, yet, but the section on resolving merges is fairly clear, I think. – mipadi Oct 29 at 21:01
vote up 3 vote down

Checkout the answers in Aborting a merge in git especially this one which shows how to view the different versions of the file with problems, e.g.,


 # common base version of the file
git show :1:some_file.cpp

# 'ours' version of the file
git show :2:some_file.cpp

# 'theirs' version of the file
git show :3:some_file.cpp
link|flag
vote up 15 vote down

Try: git mergetool

It opens a GUI that steps you through each conflict and you get to choose how to merge. Sometimes it requires a bit of hand editing afterwords, but usually it's enough by itself. Much better than doing the whole thing by hand certainly.

link|flag
Oops, that should be git mergetool (no "-") – Pat Notz Oct 9 '08 at 17:28
Ack, thanks for catching that – Peter Burns Oct 28 '08 at 23:26
vote up 3 vote down

If you're making frequent small commits, then start by looking at the commit comments with git log --merge. Then git diff will show you the conflicts.

For conflicts that involve more than a few lines, it's easier to see what's going on in an external gui tool. I like opendiff -- git also supports vimdiff, gvimdiff, kdiff3, tkdiff, meld, xxdiff, emerge out of the box and you can install others: git config merge.tool "your.tool" will set your chosen tool and then git mergetool after a failed merge will show you the diffs in context.

Each time you edit a file to resolve a conflict git add filename will update the index and your diff will no longer show it. When all the conflicts are handled and their files have been git add-ed, git commit will complete your merge.

link|flag
vote up 12 vote down
  1. Identify which files are in conflict (Git should tell you this)
  2. Open each file and examine the diffs; Git demarcates them. Hopefully it will be obvious which version of each block to keep. You may need to discuss it with fellow developers who committed the code
  3. Once you've resolved the conflict in a file git add the_file
  4. Once you've resolved all conflicts, do git rebase --continue or whatever command git said to do when you completed
link|flag
vote up 3 vote down

The following blog post seems to give a very good example on how to handle merge conflict with Git that should get you going in the right direction.

Handling and Avoiding Conflicts in Git

link|flag

Your Answer

Get an OpenID
or

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