Tagged Questions
Changes between one version of a file and a former version of the same file
398
votes
54answers
74k views
Best Diff Tool?
For all my present Diff / Merge needs I'm using Beyond Compare; when I decided to buy a license for it I tried other similar tools, both payware and freeware.
Now BC is at version 3, and I think it's ...
211
votes
24answers
110k views
Graphical diff for Mac OS X
Where can I find a convenient graphical diff-tool for Mac OS X (freeware)?
172
votes
15answers
65k views
How do I view 'git diff' output with visual diff program?
When I type 'git diff', I want to view the output with my visual diff tool of choice (SourceGear diffmerge on Windows). How do I configure git to do this?
87
votes
20answers
39k views
Compare two MySQL databases
I have a database in MySQL that I am currently developing. I have a copy of this database on my development machine which I modify as fast as I develop and a copy on a test server. My question is:
Is ...
55
votes
13answers
16k views
MySQL Diff Tool
Does anyone know any visual MySQL diff tools?
I have about 10 machines all with their own instance of MySQL. No replication is taking place, since each machine acts independently of the others. ...
45
votes
9answers
29k views
Binary diff tool for very large files?
I need a utility to diff two binary files. The files are large (6-50 GB).
Note: It needs to be specifically pointed out here: most diff programs work by mapping the file into their virtual address ...
45
votes
9answers
4k views
Semantic Diff Utilities
I'm trying to find some good examples of semantic diff/merge utilities. The traditional paradigm of comparing source code files works by comparing lines and characters.. but are there any utilities ...
40
votes
17answers
21k views
Graphical DIFF programs for linux
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 ...
37
votes
9answers
19k views
Best free 3-Way Merge Tool for Windows
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.
36
votes
7answers
2k views
Can I see changes before I save my file in Vim?
I use Vim.
I open a file. I edit it and I want to see what I've edited before I save it.
How can I do this in Vim?
36
votes
15answers
26k views
How do I diff two spreadsheets?
We have a lot of spreadsheets (xls) in our subversion repository. These are usually edited with gnumeric or openoffice.org, and are mostly used to populate databases for unit testing with dbUnit. ...
32
votes
2answers
5k views
How do I show the changes which have been staged?
I staged a few changes to be committed; how can I see the diff of all files which are staged for the next commit? I'm aware of git status, but I'd like to see the actual diffs - not just the names of ...
32
votes
6answers
17k views
Highlight the difference between two strings in PHP
What is the easiest way to highlight the difference between two strings in PHP?
I'm thinking along the lines of the Stack Overflow edit history page, where new text is in green and removed text is in ...
32
votes
4answers
5k views
Is possible to change default diff tool in Mercurial?
Everytime that I do an 'hg diff file.ext' I end up using a console diff application. Is there a way to change that? I can't find a reference in Mercurial documentation (I'm not talking about merge!). ...
31
votes
4answers
9k views
Ignoring svn folders in WinMerge
I'm trying to recursively compare two subversion working copy folders using WinMerge.
Unfortunately, WinMerge displays lots of differencing files inside of the subversion control folders (.svn or ...
31
votes
10answers
13k views
How do I apply a diff patch on windows?
There are plenty of programs out there that can create a diff patch, but I'm having a heck of a time trying to apply one. I'm trying to distribute a patch, and I got a question from a user about how ...
30
votes
4answers
5k views
Any decent text diff/merge engine for .NET?
Requirements:
free, preferably open-source
implemented in one of the .NET managed langs
Google found these:
A Generic, Reusable Diff
Algorithm on codeproject
An O(ND) Difference Algorithm for C#
...
30
votes
12answers
5k views
Anyone have a diff algorithm for rendered HTML?
I'm interested in seeing a good diff algorithm, possibly in Javascript, for rendering a side-by-side diff of two HTML pages. The idea would be that the diff would show the differences of the rendered ...
28
votes
10answers
5k views
git difftool, open all diff files immediately, not in serial
The default git diff behavior is to open each diff file in serial (wait for previous file to be closed before opening next file).
I'm looking for a way to open all the files at once - in ...
28
votes
10answers
7k views
Text difference algorithm
I need an algorithm that can compare two text files and highlight their difference and ( even better!) can compute their difference in a meaningful way ( meaning, two similar files should have a ...
28
votes
7answers
4k views
git diff - handling long lines?
I'm running git-diff on a file, but the change is at the end of a long line.
If I use cursor keys to move right it loses colour coding and worse the lines don't line up, making it harder to track the ...
25
votes
5answers
2k views
Do you know of any language-aware diffing tools? [closed]
I got to thinking about how annoying messy merges can be and was wondering if there are any language aware diffing tools that go beyond the typical language-aware features of comment skipping and case ...
24
votes
5answers
5k views
Can I make git recognize a UTF-16 file as text?
I'm tracking a Virtual PC virtual machine file (*.vmc) in git, and after making a change git identified the file as binary and wouldn't diff it for me. I discovered that the file was encoded in ...
24
votes
2answers
22k views
How to make svn diff produce file that patch would apply, when svn cp or svn mv was used?
The scenario is:
svn cp or mv some file
modify that file
svn diff > mypatch
On other machine (same working copy, but no changes):
Try to apply mypatch.
Fail -> tries to modify unexistant file.
...
23
votes
3answers
2k views
What is `git diff --patience` for?
How does the patience algorithm differ from the default git diff algorithm, and when would I want to use it?
23
votes
15answers
13k views
Best graphical source code diff viewer/editor for code comparison and merging?
The options for source code diff viewing/editing/merging seem to be:
Free:
Tortoise Merge
Meld *
WinDiff
WinMerge *
DiffMerge *
KDiff3 *
AJC Diff
Diffuse
Commercial:
Total Commander's Diff ...
23
votes
8answers
7k views
SVN performance after many revisions
My project is currently using a svn repository which gains several hundred new revisions per day.
The repository resides on a Win2k3-server and is served through Apache/mod_dav_svn.
I now fear that ...
22
votes
2answers
2k views
How can you diff two pipelines in Bash?
How can you diff two pipelines without using temporary files in Bash? Say you have two command pipelines:
foo | bar
baz | quux
And you want to find the diff in their outputs. One solution would ...
21
votes
5answers
7k views
git-diff to ignore ^M
In a project where some of the files contains ^M as newline separators. Diffing these files are apparently impossible, since git-diff sees it as the entire file is just a single line.
How does one ...
21
votes
9answers
4k views
Using mercurial and beyond compare 3(bc3) as the diff tool? help needed
in windows I am able to use winmerge as the external diff tool for hg using mercurial.ini,etc.
Using some options switch that you can find in web(I think it's a japanese website)
Anyway, here
for ...
21
votes
4answers
12k views
How can I generate a git diff of what's changed since the last time I pulled?
I'd like to script, preferably in rake, the following actions into a single command:
Get the version of my local git repository.
Git pull the latest code.
Git diff from the version I extracted in ...
20
votes
15answers
2k views
Determining “Owner” of Text Edited by Multiple Users
You may have noticed that we now show an edit summary on Community Wiki posts:
community wiki
220 revisions, 48 users
I'd like to also show the user who "most owns" the final content displayed ...
19
votes
9answers
3k views
A visual patch tool for Linux
I've got a file and a patch for it. I'd like to visually apply the patch, t.i. see how the changes proposed by the patch look in context, make some corrections, and save the resulting file.
What tool ...
19
votes
10answers
985 views
Extract relevant changes for code review
I'm working on a project with a team where we check in early and often. Individual checkins are completed to the satisfaction of the developer doing the change (including tests where possible) but ...
18
votes
7answers
5k views
Diff Algorithm
I've been looking like crazy for an explanation of a diff algorithm that works and is efficient.
The closest I got is this link to RFC 3284 (from several Eric Sink blog posts), which describes in ...
18
votes
23answers
9k views
Anyone know of any good Database Diff tools?
I can't find any good ones in sourceforge :( Anyone has any success with open source (or retail) database diff tool?
EDIT: for sqlserver 2005
17
votes
4answers
9k views
Unable to diff files in two separate branches in Git
I have FileA in branchA and FileB in branchB.
The problem is that I can access only one file at time.
I would like to be able to compare the files by FileMerge or meld, since they are the only ...
17
votes
9answers
9k views
diff a ruby string or array
Is there a ruby library that will take two strings or two arrays and return the difference between the two strings/arrays?
17
votes
11answers
6k views
Best tool for auto-generating SQL change scripts for SQL Server
I'm doing a survey for the best SQL change script generators out there, specifically for MS SQL Server.
I do know of Redgate SQL Compare, but I'd like to know what others use, and if there are free ...
16
votes
2answers
3k views
Viewing all `git diffs` with vimdiff
I have setup git diff to wrap into vimdiff (using this guide) and it's working as expected unless there are many files with changes. When there are multiple files with changes and I run git diff, it ...
16
votes
5answers
7k views
C# compare algorithms
Are there any open source algorithms in c# that solve the problem of creating a difference between two text files?
It would be super cool if it had some way of highlighting what exact areas where ...
14
votes
3answers
648 views
Getting readable diff displays in Mercurial on Unicode files (MS Windows)
I'm trying to store some Windows PowerShell scripts in a Mercurial repository. It seems the PowerShell editor likes to save files as UTF-16 Unicode. This means that there are lots of \0 bytes, which ...
14
votes
3answers
1k views
How to display word differences using c#?
I would like to show differences between two blocks of text. Rather than comparing lines of text or individual characters, I would like to just compare words separated by specified characters ('\n', ...
14
votes
2answers
3k views
Diff two tabs in Vim
Scenario: I have opened Vim and pasted some text. I open a second tab with :tabe and paste some other text in there.
Goal: I would like a third tab with a output equivalent to writing both texts to ...
14
votes
3answers
15k views
Merging with “git mergetool”
I've found git mergetool to be a handy utility for merging diffs visually, but the way I'm going about it seems really wonky. Essentially, my process looks like this when conflicts are reported:
...
13
votes
2answers
4k views
How to view revision history for Mercurial file?
For a given file in a Mercurial repository, how can you see the revision history?
And how can you diff two revisions of the file?
Ideally doing all this with visual tools (we use ExamDiff to do ...
13
votes
1answer
2k views
Find difference between trunk and branch - svn?
Is there a way to find the differences between the trunk and say a branch 0.4.x?
I need to create a tag - however I can't remember if my latest corrections were done in the trunk or the branch.
13
votes
3answers
3k views
Coloured diff to HTML
I enjoy using git diff --color-words to clearly see the words that have changed in a file.
However I want to share that diff with someone without git or a colour terminal for that matter. So does ...
13
votes
10answers
6k views
Are there any free Xml Diff/Merge tools available?
I have several config files in my .net applications which I would like to merge application settings elements etc.
I was about to begin doing it manually as I usually do, however thought there must ...
13
votes
9answers
9k views
Do you know any file comparison add-in for visual studio
Is there any built-in, add-in solution for visual studio to compare two files and display result with differences? I could't find one...