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.
kdiff3 file1 file2aorkdiff3 file1 file2a file2b(this assumes thatfile1is a common ancestor tofile2aandfile2b), and to do a three way merge with those files and outputting the merged file tofile3dokdiff3 -b file1 file2a file2b -o file3. – Mark Booth Mar 2 '11 at 18:45