Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I really like Araxis Merge for a graphical DIFF program for the PC. I have no idea what's available for linux, though. We're running SUSE linix on our z800 mainframe. I'd be most grateful if I could get a few pointers to what programs everyone else likes.

share|improve this question
Yes, but I want something to be able to compare not just files and directories, but as well as 2 regular strings when i paste them. What i really mean is that when the program opens, it should provide 2 empty panels in which you can DIRECTLY PASTE the content (if you copied a big string), WITHOUT the need to create a new file for that and to compare the files!! Writing this comment took me more time than doing what I wanted to avoid, but it's getting VERY frustrating of not being able to do that!! – Flueras Bogdan Apr 23 '10 at 14:21
This is clearly a useful question - why was it closed as "not constructive"? – Anderson Green Jan 8 at 7:08
I reckon. It's definitely useful. Up voted. – superarts.org Jan 31 at 7:36

closed as not constructive by casperOne Oct 9 '12 at 12:12

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

17 Answers

I know of two graphical diff programs: Meld and KDiff3. I haven't used KDiff3, but Meld works well for me.

It seems that both are in the standard package repositories for openSUSE 11.0

share|improve this answer
9  
I've found Meld to be pretty powerful also, although it does tend to be a sluggish on very large files. – stephen mulcahy Sep 22 '08 at 11:23
1  
I like the SUbversion integration of Meld. If you open your current folder then you see a list of files that have changed since your last check-in. Very practical. – Alexis Wilke Dec 13 '12 at 5:45
+1 for Meld - really slick. Definitely one of the more readable GUI diff apps that I've used. – btongeorge Feb 6 at 12:10
Meld is the coolest thing I've ever seen. +1 – Eduard Luca Apr 10 at 9:35
If you compere line by line, Meld is good. But if you make more changes on file meld can't find changes correctly. I think BeyondCompare best from Meld. – mesuutt Apr 15 at 11:25

BeyondCompare has also just been released in a Linux version.

Not free, but the Windows version is worth every penny - I'm assuming the Linux version is the same.

share|improve this answer
2  
BeyondCompare is great IMO, better than all the integrated-with-version-control diff tools and ide-packaged or OS standard diff tools I've ever used. +1 – davenpcj Sep 22 '08 at 3:23
This is a great windows app, I've never used it on Linux. – Daniel Jun 29 '09 at 19:00
BeyondCompare works well on Linux and IMO is superior to meld – tonylo Jan 5 '11 at 16:40

Diffuse (http://diffuse.sourceforge.net/) is also very good. It even lets you easily adjust how lines are matched up.

share|improve this answer

Emacs comes with Ediff.

EdiffScreenshot

share|improve this answer
ediff is amazing, and the integration with emacs is sweet – Alex Recarey Jul 26 '11 at 16:25
4  
It's pretty hard to setup the way one likes it, and by default it looks like a Christmas tree, it isn't obvious. And that comment from an Emacs zealot. – blais Mar 30 '12 at 12:50

If you use vim, you can use the inbuilt diff functionality. vi -d file1 file2 takes you right into the diff screen.. where you can do all sort of merge and deletes.

share|improve this answer
The prime advantage of using an editor to 'diff' files is that you can manually edit the files in place. Additionally, VIM automatic diff folding lets you see just the differences and expand the hidden code only when you need it. – nimrodm Feb 11 '09 at 7:47
I quite often use this capability, although with Meld it is much easier to merge as you often can just click one of the arrows and you're there. – Alexis Wilke Dec 13 '12 at 5:46

Meld and KDiff are two of the most popular.

share|improve this answer
Meld, that's it :-) thanks for the reminder – m1k3y3 Dec 5 '11 at 16:55

xxdiff is lightweight if that's what you're after.

share|improve this answer
xxdiff is also equipped with features for make code reviews, and has been built from the ground up to be integrated with scripts (see, for example, "decision mode" and the accompanying Python library that comes with it, with many examples of automated invocation). It's lightweight in that it's written in C, so it runs fast, and it doesn't depend on desktop environments (written against Qt only). – blais Mar 30 '12 at 12:54

I am using ubuntu and installed meld package. Meld is a very good graphical diff/merge program.

share|improve this answer

There is DiffMerge from SourceGear. It's pretty good. Araxis Merge is one of the programs I miss from Windows. I wonder if it works under Wine ;) Might have to give it a try

share|improve this answer

Meld is frickin' awesome. Seriously.

share|improve this answer

I have used Meld once, which seemed very nice, and I may try more often. vimdiff works well, if you know vim well. Lastly I would mention I've found xxdiff does a reasonable job for a quick comparison. There are many diff programs out there which do a good job.

share|improve this answer

GVim:

$ git diff HEAD^1 | gview -

Diff in graphical Vim, solarized colorscheme

share|improve this answer
This looks not much better than colordiff, or I don't understand something. – Ruslan 1 hour ago

Subclipse for Eclipse has an excellent graphical diff plugin if you are using SVN (subversion) source control.

share|improve this answer

I use Guiffy and it works well.
alt text

share|improve this answer
1  
We used to Guiffy at work until we discovered several very serious issues with it. For example, on large files it may merge part of the file, then just fail, leaving a partially merged file. It had even more interesting issues as well, like graphical ">" characters becoming a part of the merge. – littlenag Oct 9 '08 at 21:34

I generally need to diff codes from subversion repositories and so far eclipse has worked really nicely for me... I use KDiff3 for other works.

share|improve this answer

Kompare is fine for diff, but I use dirdiff. Although it looks ugly, dirdiff can do 3-way merge - and you can get everything done inside the tool (both diff and merge).

share|improve this answer

ExamDiff Pro has a nice diff tool for Windows. I just played around with their latest version, 5.5.1.18, under Wine v1.01. Based on a very brief period of use, the only problem I ran into was that you have to open the files for comparison using the main interface, not the Compare New Pair window. The program crashes after selecting the second file for comparison under the Compare New Pair window.

share|improve this answer

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