Do you know a good way to explain how to resolve merge conflicts in git?
|
14
|
|
|
|
|
|
The Git manual has some very good instructions, including helpful examples, on handling merge conflicts. |
||
|
|
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.,
|
||
|
|
|
|
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 afterwords, but usually it's enough by itself. Much better than doing the whole thing by hand certainly. |
||||
|
|
|
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 |
||
|
|
|
|
|
||
|
|
|
|
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. |
||
|
|
