vote up 7 vote down star
5

Title says it. What's the best tool for viewing and editing a merge in Git? I'd like to get a 3-way merge view, with "mine", "theirs" and "output" in separate panels.

Also, instructions for invoking said tool would be great. (I still haven't figure out how to start kdiff3 in such a way that it doesn't give me an error)

edit: My OS is Ubuntu.

flag
What OS do you want instructions for? – Luke Sep 26 '08 at 0:45

10 Answers

vote up 7 vote down check

Meld is a good diff/merge tool.

Edit: Here's an article on it.

link|flag
No windows version as far as I can tell, and doesn't use a 3 way view which means you don't get a preview of the final version. – Luke Sep 26 '08 at 0:45
It does indeed have a 3 way view, and the original poster is running Linux, not Windows, so I don't see why that's a problem. – revertts Sep 26 '08 at 7:21
vote up 0 vote down

p4merge

link|flag
vote up 0 vote down

gitx http://gitx.frim.nl/

Some bugs when working with large commit sets but great for browsing through changes and picking different changes to stage and then commit.

link|flag
vote up 1 vote down

Diffuse is my favourite but of course I am biased. :-) It is very easy to use:

$ diffuse "mine" "output" "theirs"

http://diffuse.sourceforge.net/

link|flag
I really like diffuse, and I'm not biased. – total Sep 11 at 13:16
vote up 0 vote down

You can change the tool used by git mergetool by passing git mergetool -t=<tool> or --tool=<tool>. To change the default (from vimdiff) use git config merge.tool <tool>.

link|flag
vote up 1 vote down

Okay, I figured out how to invoke these great tools, and that's with the very helpful command "git mergetool"

That's very nice: can you please leave some instructions on how you did it?

link|flag
Git supports vimdiff, gvimdiff, kdiff3, tkdiff, meld, opendiff, xxdiff, and 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. – Paul Nov 18 '08 at 17:59
vote up 1 vote down

Okay, I figured out how to invoke these great tools, and that's with the very helpful command "git mergetool"

(Previously, I was trying to do the job myself, with a script that made temporary copies of the file and then called the tool. That was silly.)

link|flag
Agree with peter below ... how do I get git mergetool to work? – Lanny Nov 16 '08 at 22:41
I've been wondering what I had to do in order to make gvimdiff work with git, and now I find out the answer is "nothing"! I'd vote this answer up if it included the information in Paul's comment on peter's question below. – Sam Stokes Dec 14 '08 at 20:05
vote up 2 vote down

If you are just looking for a diff tool beyond compare is pretty nice: http://www.scootersoftware.com/moreinfo.php

link|flag
vote up 0 vote down

I hear good things about kdiff3, seems to be between that and meld (which another poster already suggested).

link|flag
vote up 5 vote down

My favorite visual merge tool is the free SourceGear DiffMerge, available for Windows, Linux and MacOS. Clean visual UI with all diff features you'd expect, command line interface and usable keyboard shortcuts.

link|flag

Your Answer

Get an OpenID
or

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