Is there a good way to explain how to resolve merge conflicts in Git?

link|improve this question

feedback

8 Answers

up vote 160 down vote accepted

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

link|improve this answer
449  
Documentation is pretty impenetrable for the average user. – picardo Oct 29 '09 at 20:34
5  
In a few cases, yet, but the section on resolving merges is fairly clear, I think. – mipadi Oct 29 '09 at 21:01
14  
-1. If doc does not let you see immidiatly tools like mergetool qnd the --theirs option. – e-satis Mar 10 '10 at 9:59
81  
If you found yourself here instead of in the git docs, then perhaps they are difficult to use. – The Mad Gamer Jun 29 '11 at 20:01
17  
The git docs are crazy hard to understand. Git is often mystifying to me. – JustinM Jun 30 '11 at 17:46
show 3 more comments
feedback

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 afterwards, but usually it's enough by itself. Much better than doing the whole thing by hand certainly.

link|improve this answer
1  
Oops, that should be git mergetool (no "-") – Pat Notz Oct 9 '08 at 17:28
1  
Ack, thanks for catching that – Peter Burns Oct 28 '08 at 23:26
4  
FYI you can use git mergetool -y to save a few keystrokes if you're merging a lot of files at once. – davr Jun 17 '10 at 23:32
31  
Well, it doesn't necessarily open a GUI unless you install one. Running git mergetool for me resulted in vimdiff being used. You can install one of the following tools to use it instead: meld opendiff kdiff3 tkdiff xxdiff tortoisemerge gvimdiff diffuse ecmerge p4merge araxis vimdiff emerge. – Josh Glover May 11 '11 at 14:00
2  
Good point Josh. On ubuntu I've had the best luck with meld, its three way merge display isn't bad. On OSX git chose a nice default. – Peter Burns May 24 '11 at 5:08
show 4 more comments
feedback

Here's a probable use-case, from the top:

You're going to pull some changes, but oops, you're not up to date:

> git fetch origin
> git pull origin master
From ssh://gitosis@example.com:22/projectname
 * branch            master     -> FETCH_HEAD
Updating a030c3a..ee25213
error: Entry 'filename.c' not uptodate. Cannot merge.

So you get up-to-date and try again, but have a conflict:

> git add filename.c
> git commit -m "made some wild and crazy changes"
From ssh://gitosis@example.com:22/projectname
 * branch            master     -> FETCH_HEAD
Auto-merging filename.c
CONFLICT (content): Merge conflict in filename.c
Automatic merge failed; fix conflicts and then commit the result.

So you decide to take a look at the changes:

> git mergetool

Oh me, oh my, upstream changed some things, but just to use my changes.... no... their changes...

> git checkout --ours filename.c
> git checkout --theirs filename.c
> git add filename.c
> git commit -m "using theirs"

And then we try a final time

> git pull origin master
From ssh://gitosis@example.com:22/projectname
 * branch            master     -> FETCH_HEAD
Already up-to-date.

Ta-da!

link|improve this answer
12  
+1 That helped me a lot. Thanks. – cwallenpoole Dec 21 '10 at 16:19
4  
+1 exactly the kind of explanation I was looking for. Thanks! – BenjaminGolder May 19 '11 at 18:23
3  
+1 perfect! (for me and my skill level) – electblake May 27 '11 at 13:40
1  
This was super helpful because I had a lot of merge errors with binary files (art assets) and merging those seems to always fail, so I need to overwrite it with the new file always and not "merge" – petrocket Jun 8 '11 at 17:39
17  
Thanks! 'git checkout --theirs' vs 'git checkout --ours' was exactly the information that I was looking for, and isn't mentioned in the Git book on merge resolution. – swestrup Jul 1 '11 at 21:19
show 6 more comments
feedback
  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|improve this answer
thanks for this simple answer, vey helpful. Any idea why "git add" is used in this case-- seems odd given that the file in question is already in the GIT repo. – Justin Grant Oct 10 '10 at 4:52
8  
@Justin Think of Git as tracking content rather than tracking files. Then it's easy to see that the content you've updated isn't in the repository and needs to be added. This way of thinking also explains why Git doesn't track empty folders: Although they are technically files, there isn't any content to track. – Gareth Oct 12 '10 at 9:17
content is there, conflict occurs because there 2 version of content. Therefore "git add" does not sound correct. And it does not work (git add, git commit) if you want commit only that one file after conflict was resolved ("fatal: cannot do a partial commit during a merge.") – Dainius Sep 14 '11 at 9:19
feedback

I find merge tools rarely help me understand the conflict or the resolution. I'm usually more successful looking at the conflict markers in a text editor and using git log as a supplement.

Here are a few tips:

Tip One

The best thing I have found is to use the "diff3" merge conflict style:

git config merge.conflictstyle diff3

This will produces conflict markers like this:

<<<<<<<
changes made on my branch
|||||||
the common ancestor version
=======
changes made on the branch i'm merging
>>>>>>>

The middle section is what the common ancestor looked like. This is useful because you can compare it to the top and bottom versions to get a better sense of what was changed on each branch, which gives you a better idea for what the purpose of each change was.

If the conflict is only a few lines, this generally makes the conflict very obvious. (Knowing how to fix a conflict is very different; you need to be aware of what other people are working on. If you're confused, it's probably best to just call that person into your room so they can see what you're looking at.)

If the conflict is longer, then I will cut and paste each of the three sections into three separate files, such as "mine", "theirs" and "common".

Then I can run the following commands to see the two diff hunks that caused the conflict:

diff common mine
diff common theirs

This is not the same as using merge tool, since merge tool will include all of the non-conflicting diff hunks too. I find that to be distracting.

Tip Two

Somebody already mentioned this, but understanding the intention behind each diff hunk is generally very helpful for understanding where a conflict came from and how to handle it.

git log --merge -p <name of file>

This shows all of the commits that touched that file in between the common ancestor and the two heads you are merging. (So it doesn't include commits that already exist in both branches before merging.) This helps you ignore diff hunks that clearly are not a factor in your current conflict.

Tip Three

Verify your changes with automated tools.

If you have automated tests, run those. If you have a lint, run that. If it's a buildable project, then build it before you commit, etc. In all cases, you need to do a bit of testing to make sure your changes didn't break anything. (Heck, even a merge without conflicts can break working code.)

Tip Four

If you're unsure of a merge, don't force it.

Merging can feel overwhelming, especially when there are a lot of conflicting files and the conflict markers cover hundreds of lines. Often times when estimating software projects we don't include enough time for overhead items like handling a gnarly merge, so it feels like a real drag to spend several hours dissecting each conflict.

In the long run, awareness of what others are working on (such as code review) is the best tool to anticipate merge conflicts and prepare yourself to resolve them correctly in less time.

link|improve this answer
feedback

Checkout the answers in Aborting a merge in Git, especially Charles Bailey's answer which shows how to view the different versions of the file with problems, for example,

# 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|improve this answer
feedback

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|improve this answer
1  
Using "git add" is the real trick here. You may not even want to commit (maybe you want to stash), but you have to do "git add" to complete the merge. I think mergetool does the add for you (although it isn't in the manpage), but if you do the merge manually, you need to use "git add" to complete it (even if you don't want to commit). – nobar Oct 25 '10 at 9:37
feedback

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|improve this answer
feedback

protected by Will Dec 17 '10 at 13:56

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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