vote up 7 vote down star
4

The options for source code diff viewing/editing/merging seem to be:

Free:

Commercial:

Are there any other options? (Wikipedia suggests a few)

What's your favorite tools for source code diff? And how does it differ from the ones in the list?


* Supports directory diffs

flag
2  
please everyone feel free to edit the list and add items as you see fit – Assaf Apr 27 at 10:03
Meld does support directory diff, not sure about directory merge. – Pasi Savolainen Apr 27 at 10:57
So far Beyond Compare seems like the most complete option in terms of features. Although one glaring deficiency is the way line-diffs are presented. Some apps, like BC, just show you +/- lines in various colors; but others go further and visualize blocks of lines as "injected" between lines in the other file. IOW fancier visualization, which BC doesn't seem to offer. – Assaf Apr 27 at 13:32

13 Answers

vote up 2 vote down check

I really like Beyond Compare, it has a lot of nice features and is often very accurate.

link|flag
vote up 2 vote down

I use meld.

link|flag
vote up 5 vote down

I use SourceGear DiffMerge, doesn't do anything awe inspiring (although the directory compare is quite nice) but I really like the interface for it.

link|flag
And the colors/font styles are much easier on the eyes than the svn diff/merge... – GalacticCowboy Apr 28 at 20:34
vote up 2 vote down

I use WinMerge and have been very happy with it.

CompareIt is good as well, but non-free.

link|flag
vote up 2 vote down

Also check out KDiff3

link|flag
vote up 16 vote down

WinMerge is free and good. It can visualize folder differences, if that's what you're looking for:

http://winmerge.org/about/screenshots/foldercmp.png

link|flag
Winmerge is the best. – dr. evil Apr 27 at 10:09
It doesn't seem to be as feature-full as Beyond Compare. Directory comparison is implemented in a weird way (without a split screen); can't compare files with different names (as a result of previous handicap); can't easily choose folder to compare, and then no option to selectively do a content comparison on subdirs. In short, after playing with it for a few minutes it seems that BC is more complete. – Assaf Apr 27 at 13:29
Well I guess that's the difference between a commercial tool and a free one. If you really need the functionality of Beyond Compare, then it deserves its money. – Igor Brejc Apr 27 at 14:35
vote up 0 vote down

There are plenty of diff tools around. I've search for one that runs on all three major plattforms (Linux, Mac, Windows) and found "DeltaWalker" from Deltopia.

The tool is based on eclipse and has all the bells and whistles you need at a normal developers day.

It's a commercial tool, but I think it is worth the money.

link|flag
Playing around with it just now it seems much slower than the alternatives (probably because of Eclipse), and I also can't figure out the directory diff UI - when comparing two versions of the same directory it shows identical files and modified files in the same color (light green)... (-1) – Assaf Apr 27 at 13:47
You might need to configure your tools correctly. The out-of-the-box config does not calculate the diff byte by byte and includes whitespace on comparison. You might find it useful to have a look at the settings? Talking about performance, it is correct, that DW is slower than other solutions, that run natively on a Windows OS using C++ or .NET (or on Linux using GTK or QT), but you can have it on all Java Plattforms ;) (Thats the point for me, as I own a Mac and work on Ubuntu on the job) – Mario Mueller Apr 28 at 6:34
vote up 0 vote down

I use AJCDiff which I like a lot, not free but at $15 it's not exactly going to break the bank either. Reason I like it is that it can compare text, binaries, images and word docs. Doesn't do the directory thing mind you; horses for course I guess.

link|flag
vote up 0 vote down

I use WinDiff. It can compares folders or files as you want, but only one option at a time. This tool is enough for me.

link|flag
vote up 0 vote down

Diffuse is also free. It is the only tool I know of that does n-way merges (not limited to 2-way and 3-way merges). It also allows alignment to be manually overridden, has in-line editing, syntax highlighting, Unicode support, and easy keyboard navigation. It can also retrieve revisions of files directly from Bazaar, CVS, Darcs, Git, Mercurial, Monotone, Subversion, and SVK repositories.

link|flag
vote up 1 vote down

Beyond Compare is definitely a candidate to be tested if you are looking for to top of the line. From Scooter software

link|flag
vote up 0 vote down

Been using ExamDiff for years on my PC.

I've just discovered Diffuse after installing Ubuntu 9.04 on a virtual machine, thinking about putting that on Windows as well now.

link|flag
vote up 1 vote down

vimdiff

Doesn't do directory comparisons, but I have the full power of vi at my fingertips.

$ vim -d /etc/skel/.bashrc ~/.bashrc
  # ~/.bashrc: executed by bash(1) for »|  # ~/.bashrc: executed by bash(1) for»
  # see /usr/share/doc/bash/examples/st»|  # see /usr/share/doc/bash/examples/s»
  # for examples                        |  # for examples
                                        |
  --------------------------------------|  # Use Fink if it exists
  --------------------------------------|  root=/sw; [[ -d $root ]] && . $root/»
  --------------------------------------|
  # If not running interactively, don't»|  # If not running interactively, don'»
  [ -z "$PS1" ] && return               |  [ -z "$PS1" ] && return
                                        |
  # don't put duplicate lines in the hi»|  # don't put duplicate lines in the h»
  # don't overwrite GNU Midnight Comman»|  # don't overwrite GNU Midnight Comma»
  export HISTCONTROL=$HISTCONTROL${HIST»|  #export HISTCONTROL=$HISTCONTROL${HI»
  # ... or force ignoredups and ignores»|  # ... or force ignoredups and ignore»
  export HISTCONTROL=ignoreboth         |  export HISTCONTROL=ignoreboth
  --------------------------------------|  export HISTFILESIZE=50000
  --------------------------------------|  export HISTSIZE=50000
                                        |
  # append to the history file, don't o»|  # append to the history file, don't »
  shopt -s histappend                   |  shopt -s histappend
                                        |
  # for setting history length see HIST»|  # for setting history length see HIS»
/etc/skel/.bashrc [RO]1,1            Top .bashrc              1,1            Top
"~/.bashrc" 112L, 3478C
link|flag

Your Answer

Get an OpenID
or

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