Is there a good way to explain how to resolve merge conflicts in Git?
|
|
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. |
|||||||||||||||||||||
|
|
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! |
|||||||||||||||||||||
|
|
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 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", "common" and "theirs". 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. |
||||
|
|||||||||||||||||
|
|
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,
|
||||
|
|
|
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 |
|||||
|
|
For Emacs users which want to resolve merge conflicts semi-manually:
shows all files which require conflict resolution. Open each of those file one by one, or all at once by:
When visiting a buffer requiring edits in emacs type
This will open 3 buffers (mine, theirs, and the output buffer). Navigate by pressing 'n' (next region), 'p' (prevision region). Press 'a' and 'b' to copy mine or theirs region to output buffer, respectively. And/or edit the output buffer directly. When finished: Press 'q', emacs asks you if you want to save this buffer: yes. After finishing a buffer mark it as resolved by running from the teriminal:
When finished with all buffers type
to finish the merge. |
|||
|
|
|
You could fix merge conflicts in a number of ways as other have detailed. I think the real key is understanding how changes flow with local and remote repositories. The key to this is understading tracking branches. I have found that I think of the tracking branch as the 'missing piece in the middle' between me my local, atual files directory and the remote defined as origin. I've personally got into the habit of 2 things to help avoid this. Instead of:
Which has two drawbacks - 1) All files get added and that might include some not needed and 2) You don't get to review the file list first, instead I do:
This way you are more deliberate about which files get added and you also get to review the list and think a bit more while using the editor for the message. I find it also improves my commit messages when I use a full screen editor. Also (and more relevant to your situation), I try to avoid:
or
because pull implies a merge and if you have changes locally that you didn't want merged you can easily end up with merge conflicts that you then have to spend time resolving. Instead I try to do
You may also find this helpful: git branch, fork, fetch, merge, rebase and clone, what are the differences? |
|||
|
|
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.