Is there a good way to explain how to resolve merge conflicts in Git?
|
feedback
|
|
The Git manual has some very good instructions, including helpful examples, on handling merge conflicts. | |||||||||||||||||||||
feedback
|
|
Try: 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. | |||||||||||||||||||||
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:
So you get up-to-date and try again, but have a conflict:
So you decide to take a look at the changes:
Oh me, oh my, upstream changed some things, but just to use my changes.... no... their changes...
And then we try a final time
Ta-da! | |||||||||||||||||||||
feedback
|
| |||||||||
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:
This will produces conflict markers like this:
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:
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.
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. | |||
|
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,
| ||||
|
feedback
|
|
If you're making frequent small commits, then start by looking at the commit comments with 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: Each time you edit a file to resolve a conflict | |||||
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. | |||
|
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.