up vote 40 down vote favorite
11
share [g+] share [fb]

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.

Thanks, Scott

link|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
feedback

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

link|improve this answer
2  
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
feedback

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.

link|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
feedback

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

link|improve this answer
feedback

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.

link|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
feedback

Emacs comes with Ediff.

EdiffScreenshot

link|improve this answer
ediff is amazing, and the integration with emacs is sweet – Alex Recarey Jul 26 '11 at 16:25
feedback

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

link|improve this answer
feedback

Meld and KDiff are two of the most popular.

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

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

link|improve this answer
feedback

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.

link|improve this answer
feedback

Meld is frickin' awesome. Seriously.

link|improve this answer
feedback

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

link|improve this answer
feedback

I use Guiffy and it works well.
alt text

link|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
feedback

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.

link|improve this answer
feedback

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).

link|improve this answer
feedback

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

link|improve this answer
feedback

I love CSDiff for Windows. It even creates a web based diff that has navigation in javascript. It does whole directory structures. You can adjust the way the diff is done. You can adjust the way that the diff is presented. I like the view with the strikeout and color coded all in the same document.

link|improve this answer
feedback

GVim:

$ git diff HEAD^1 | gview -

Diff in graphical Vim, solarized colorscheme

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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