Changes between one version of a file and a former version of the same file
59
votes
8answers
32k 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 ...
313
votes
16answers
124k views
How do I view 'git diff' output with a 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?
185
votes
21answers
84k views
Compare two MySQL databases [closed]
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 ...
49
votes
4answers
10k views
Any decent text diff/merge engine for .NET? [closed]
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#
...
24
votes
10answers
16k 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?
93
votes
13answers
34k views
MySQL Diff Tool [closed]
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. ...
20
votes
6answers
14k views
How to perform string Diffs in Java?
I would need to perform Diffs between Java strings. I would like to be able to rebuild a string from the original string and diff versions. Does anyone has done this in Java? What library do you use?
...
39
votes
6answers
12k views
Diff Algorithm [closed]
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 ...
38
votes
11answers
10k 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 (like two similar files should have a ...
38
votes
12answers
9k 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 ...
42
votes
5answers
11k 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 ...
7
votes
8answers
6k views
Calculate text diffs in PHP
Are there any libraries (3rd party or built-in) in PHP to calculate text diffs?
201
votes
4answers
36k 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 ...
34
votes
8answers
13k 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 ...
45
votes
3answers
16k views
65
votes
11answers
46k 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 ...
21
votes
5answers
11k 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 ...
30
votes
10answers
18k views
Any way to use a custom diff tool with cleartool/clearcase?
I'd like to use my own diff when working in a clearcase snapshot view. As far as I can see, there is no way to specify a diff tool when running "cleartool diff", so I was thinking I could run ...
61
votes
10answers
5k 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 ...
38
votes
4answers
35k 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.
...
35
votes
11answers
31k views
Are there any free Xml Diff/Merge tools available? [closed]
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 ...
3
votes
3answers
3k views
How to do text DIFF using PHP?
What is the best way to do this for PHP? Is there any PHP function that can do this, considering the column content could be very large?
If PHP function is not available, what shell utility can I ...
8
votes
2answers
606 views
What does the “@@…@@” meta line in svn diff or git diff mean?
When I use svn diff or git diff it shows lines like:
@@ -1,5 +1,9 @@
What do they mean?
5
votes
1answer
2k views
recursive array_diff()?
I'm looking for some tool to give me a recursive diff of two arrays. What I envision is a web page with two color-coded tree-structures. On each tree, green are parts of the array which match in both ...
79
votes
12answers
52k views
Best free 3-Way Merge Tool for Windows [closed]
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.
50
votes
5answers
22k 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 ...
70
votes
20answers
57k 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. ...
27
votes
4answers
8k 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 ...
21
votes
23answers
14k views
Anyone know of any good Database Diff tools? [duplicate]
Possible Duplicate:
Best tool for auto-generating SQL change scripts for SQL Server
Has anyone has any success with open source (or retail) database diff tool for SQL Server 2005?, as I ...
22
votes
11answers
11k 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 ...
30
votes
3answers
38k 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:
...
21
votes
7answers
11k views
In git, how can I get the diff between all the commits that occured between two dates?
Or just all the commits that occurred between two dates? In SVN, you could do something like svn diff -r{date}:{date} to do it! I can't seem to find a git equivalent to this.
Specifically I'm ...
30
votes
2answers
11k views
how to show lines in common (reverse diff)?
I have a series of text files for which I'd like to know the lines in common rather than the lines which are different between them. Command line unix or windows is fine.
foo:
linux-vdso.so.1 => ...
9
votes
8answers
8k views
How to set Araxis as diff / merge tool for MSYS git?
I'm trying to use Araxis Merge as my diff / merge tool for MSYSGit.
I found a few resources on the net:
On the Araxis site, they mention an "easy" way, but it implies a executables ...
2
votes
3answers
2k views
Calculate difference from previous item with LINQ
I'm trying to prepare data for a graph using LINQ.
The problem that i cant solve is how to calculate the "difference to previous.
the result I expect is
ID= 1, Date= Now, DiffToPrev= 0;
ID= 1, ...
13
votes
7answers
5k views
.NET Assembly Diff / Compare Tool - What's available?
I'd like to be able to do a code-level diff between two assemblies; the Diff plug-in for Reflector is the closest thing I've found so far, but to compare the entire assembly is a manual process ...
12
votes
1answer
2k views
git difftool to give directory compare?
Is it possible to get the git difftool command to open a directory compare between the changed files and the staging/checked files?
So ideally, if 2 files have changed, they would be the only 2 ...
9
votes
4answers
8k views
XML Diff and Merge
I think i have a rather unique problem to solve. Well, i cant find enough information using Google. So here it goes,
I work on a JEE SOA application which stores XML documents as XML using Oracle XML ...
5
votes
4answers
7k views
Java library for free-text diff [closed]
I need to match up two almost-the-same long freetext strings; i.e., to find index-to-index correspondences wherever possible.
Because this is freetext, the comparison should not be line-based as in ...
53
votes
2answers
5k 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?
19
votes
3answers
5k views
Coloring white space in git-diff's output
Regarding code formatting I'm kind of purist :). I very often remove unnecessary white spaces (lines with only ws, ws at the end of lines etc). I even have set vim to show that kind of lines colored ...
2
votes
3answers
404 views
Comparing image in url to image in filesystem in python
Is there a quick and easy way to do such comparison?
I've found few image compare questions from stackoverflow but none of those actually proved answer for this question.
I have images files in my ...
14
votes
7answers
1k views
Context-aware merge?
Is there any diff/merge tool for programming languages, that works in a syntax-aware way (like XML Diff Tool), doing more than compare line-by-line (and optionally ignoring whitespace).
I'm ...
10
votes
4answers
9k views
Generate formatted diff output in Java
Are there any libraries out there for Java that will accept two strings, and return a string with formatted output as per the *nix diff command?
e.g. feed in
test 1,2,3,4
test 5,6,7,8
test ...
5
votes
4answers
1k views
Diff two XML doc in Ruby?
What's the easiest way to see the difference between two xml files using?
I looked into Hpricot and Nokogiri but couldn't find any good comparison methods. I've also looked into unix tools like ...
134
votes
4answers
51k views
How to apply `git diff` patch without Git installed?
How can my client apply patch created by git diff without git installed?
I have tried to use patch command but it always asks file name to patch.
51
votes
4answers
31k 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 ...
32
votes
4answers
24k 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 ...
21
votes
3answers
927 views
Git diff .. ? What's the difference between having .. and no dots
What's the difference between the command
(a) git diff foo master and (b) git diff foo..master and (c) git diff foo...master
The diff manual talks about it but isn't totally clear to me.
18
votes
4answers
1k views
(Vim)diff two subroutines in same file
Is it possible to diff or even vimdiff two almost similar subroutines which occur in the same file? If so, how?
I can think of copying the two subroutines in two separate files and then diff them, ...