Changes between one version of a file and a former version of the same file

learn more… | top users | synonyms

315
votes
16answers
125k 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?
205
votes
4answers
37k 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 ...
186
votes
21answers
85k 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 ...
134
votes
4answers
52k 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.
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. ...
90
votes
16answers
56k views

Graphical DIFF programs for linux [closed]

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 ...
83
votes
3answers
27k views

Vimdiff: What are the most frequently used commands/shortcuts that could get a newbie started?

I've started using vimdiff today, and wanted to do some of the things that I've taken for granted on Windows based diff editors (like expand/collapse a diff section, have full file expansion/only ...
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.
71
votes
8answers
10k 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 ...
70
votes
20answers
58k 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. ...
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 ...
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 ...
60
votes
13answers
33k 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 ...
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 ...
55
votes
2answers
13k 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 ...
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?
51
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 ...
51
votes
4answers
32k 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 ...
50
votes
4answers
11k 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# ...
49
votes
4answers
15k 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 ...
45
votes
7answers
5k 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?
45
votes
3answers
16k views

use Winmerge inside of Git to file diff

Is there a way to use Winmerge inside of git to do Diffs?
43
votes
3answers
8k 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!). ...
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 ...
41
votes
4answers
10k views

How to work with diff representation in git

How do I read the output from git diff? The man page for git-diff is rather long, and explains many cases which don't seem to be necessary for a beginner. For example: git diff origin/master
41
votes
2answers
8k 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 ...
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 ...
39
votes
1answer
12k views

Git diff -w ignore whitespace only at start & end of lines

I love to use git diff -w to ignore whitespace differences. But, I just noticed that it ignores even whitespace differences in the middle of lines. How could I only ignore whitespace differences that ...
39
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. ...
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 ...
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 ...
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 ...
33
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 ...
32
votes
2answers
4k 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 ...
31
votes
3answers
39k 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: ...
31
votes
3answers
13k 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 ...
30
votes
9answers
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 ...
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 => ...
30
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 ...
29
votes
3answers
10k views

Can I use git diff on untracked files?

Is it possible to ask git diff to include untracked files in its diff output? Or is my best bet to git add the new files I've created and the existing files I've edited, and use git diff --cached ...
28
votes
9answers
6k 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 ...
27
votes
2answers
3k views

How do I exit the results of 'git diff' in git bash on windows?

I'm using git bash on Windows 7. When I run git diff, I see this: However, I'm unable to get back to a regular prompt. Pressing ctrl+c seems to work, but as soon as I start typing a command, it's ...
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 ...
27
votes
1answer
13k 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.
26
votes
2answers
9k views

What is the difference between 'git format-patch and 'git diff'?

I don't see a difference between the output of 'git format-patch' and 'git diff', is there any? And won't I be able to use 'git diff' to produce a patch and then apply it using git apply? My problem ...
25
votes
3answers
9k views

how to make svn diff show only non-whitespace line changes between two revisions

I can get diffs between two revisions using something like svn diff -r 100:200 > file.diff But the problem is that there are many lines that show up due to change in whitespace. Is there a way ...
25
votes
2answers
5k views

Check diff against file on the server

I have a working copy of a repository on my machine, and I know that it has been updated on the server. I would like to know how to get the difference between the new version and the version in my ...
24
votes
5answers
9k views

View differences of branches with meld?

I know that I can view the difference between HEAD and current state with meld .. But how can I view the differences between branches, for example master and devel with meld? At the moment I do the ...
24
votes
6answers
5k views

Why does git diff on Windows warn that the “terminal is not fully functional”?

I'm using msysgit 1.7.7.1 on Windows. I get an error when using git diff. What is causing this? Is there no diff tool included in msysgit? What should I do? WARNING: terminal is not fully ...

1 2 3 4 5 38