up vote 37 down vote favorite
23
share [g+] share [fb]

I'm looking for a good free 3-way Merge/Diff tool for Windows.

I know of KDiff3. But I was looking for further recommendations.

link|improve this question

62% accept rate
1  
Is there an issue with kdiff3, or are you just trying to see what else is out there? – Justin Ethier Mar 18 '10 at 21:50
There is no problem with KDiff3. It was what I continued to use. – orj Mar 30 '11 at 6:27
feedback

9 Answers

up vote 21 down vote accepted

I use P4Merge that is free... http://www.perforce.com/perforce/products/merge.html

link|improve this answer
P4Merge is indeed very good. I used it when I worked for a company that used Perforce for source control. I used KDiff3 at my last job though because although it is ugly on Windows it is probably the best open source 3-way merge tool. – orj Mar 30 '11 at 6:30
From what I have seen, P4Merge does not seem to let you edit the merge result. Is that correct? – Art Apr 7 '11 at 2:04
I have edited the result in P4Merge (bottom pane). I'm using P4Merge version 2010.1 / 64-bit. – Nathan McDaniel Apr 29 '11 at 13:52
It doesn't seem to allow 3-way merging of directories/trees? – Seun Osewa Jun 3 '11 at 5:00
Does anyone have the Merge and Compare command line parameters for TFS integration for P4Merge? – Luke Puplett Aug 5 '11 at 10:29
feedback

TortoiseMerge is available either together with TortoiseSVN, but also as a standalone tool. Note: the TortoiseDiff.zip file also contains an image diff tool, not just TortoiseMerge.

link|improve this answer
1  
TortoiseMerge is a 2-way merge tool, so you can't compare base revision in trunk, revision y in branch, and revision y-1 in branch. Having revision y-1 allows you to prevent unwanted changes to merge into trunk. See stackoverflow.com/questions/326937 – Eugene Yokota Nov 13 '09 at 22:31
57  
I think I know better that TortoiseMerge is a three way merge tool since I wrote it. You can very well compare three files, not just two. – Stefan Nov 15 '09 at 11:21
4  
Looks to me that though TortoiseMerge may do three-way merge, you don't get to see the base file your self (tortoisesvn.net/docs/release/TortoiseMerge_en/…) – Benjol Apr 16 '10 at 9:11
1  
The link above to the standalone tool seems to have changed. Can anyone point me to a copy of the merge tool as a standalone for Windows? – Chris Harrison Jun 2 '11 at 3:51
feedback

I've never used this but SourceGear DiffMerge is free.

It's not free, but I use Beyond Compare.

link|improve this answer
This is what I use day to day. – Steven Robbins Jan 20 '09 at 6:48
2  
Definitely recommend Beyond Compare. – nevets1219 Mar 18 '10 at 21:42
feedback

Diffuse (http://diffuse.sourceforge.net/) is an easy to use free tool that supports 3-way merges.

link|improve this answer
In fact they claim to be a "n-way" merge tool. Meaning one can merge 5 distinct versions of the same file, at the same time, for instance. Weird, but may be useful sometimes I guess. – rsenna Sep 21 '11 at 12:25
feedback

I think there is some confusion about 2-way and 3-way merging. Here is my understanding of the issue. There is a file say 'A' which was modified by two different users to have files 'B1' and 'B2'. If a tool compares just B1 and B2 to allow you to get a merged file 'C', its a 2-way merge tool. If a tool compares B1 and B2 with reference to A, its a 3-way merge tool. Generally, 3-way merge tools give a much better grasp of what has happened and are preferred.

Both Winmerge and the merge tool built into TortoiseSVN are 2-way merge tools.

link|improve this answer
3  
My version of TortoiseSVN Merge has fields for "Base file", "Their file" and "My file". I have never used it, though, but are you sure it's not 3-way? – erikkallen Mar 18 '10 at 21:28
feedback

One that I liked, but which is not cheap, was Araxis Merge.

link|improve this answer
+1. Probably the best 3-way diff and merge tool out there. – Maxime Labelle Jan 3 '11 at 16:21
we are talking only about free tools. Araxis is much too costly. – AgA Jul 2 '11 at 4:58
feedback

The Pro version of CodeCompare has a nice 3-way merge.

link|improve this answer
feedback

I always just merged one set of changes and then the other (merge A with B and then C with B). I have never come across a situation where I absolutely had to look at all three at the same time. It probably takes more time this way but I rarely have the problem of merging three change sets. If you are running into this problem regular you need to use source control.

Here is a wikipedia comparison of merge tools including information about three way merge.

link|improve this answer
Are you sure you are thinking about a three way merge? – Konstantin Feb 25 '10 at 8:20
Yes. What I am saying that two two way merges results in a 3 way merge. – Gerhard Mar 1 '10 at 6:01
2  
You're not using the right source control (git) :) – Benjol Apr 16 '10 at 8:57
2  
Conceptually, there is a 2-way diff (old vs. new) and a 3-way merge (old vs. new1 vs. new2). A "2-way merge" means you ignore old and just 2-way diff new1 vs. new2, manually picking the winner for every difference - it's less smart and requires more work. – Beni Cherniavsky-Paskin May 11 '10 at 9:32
feedback

This is a bit late to this discussion thread, but I think it would be good for people to know of its existence at least.

I have often had good results with WinMerge: http://winmerge.org/

I'm not sure if this really counts as a "three" way merge tool, as it does not have a third merge pane, but I have certainly used it for merging files and I find it simpler to use than some of the tools I've used that are three pane merge tools.

Hope this helps

link|improve this answer
Okay, I'm already feeling poster's remorse. I probably should not have posted here, since this isn't a 3-way merge. Hopefully no one votes me down. – CStroliaDavis Oct 3 '11 at 12:04
feedback

Your Answer

 
or
required, but never shown

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