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

learn more… | top users | synonyms

3
votes
2answers
971 views

Help needed with tf diff

Using Visual Studio 2008 tools, I am trying to get an ASCII diff of change sets 14318 and 14317. I can do so using GUI: tf changeset 14318 and then select a file and right-click and select ...
2
votes
2answers
427 views

How to make “git diff” output normal diff format (non-unified, non-context)?

I want git diff to output normal, plain old diff output (not unified diff, and not context diff). I want this: $ diff file1 file2 2c2 < b --- > B 4d3 < d 5a5 > f I do NOT want unified ...
12
votes
3answers
1k views

Using an alternate diff algorithm in Git

Because git is designed for source code, its diff algorithms treat a line as the minimum indivisible unit. I am trying to edit some markdown files that are word wrapped at column 80. Adding a ...
9
votes
2answers
611 views

Large github commit diff not shown

This happens to me both with Compare view as well as standard commits that are large in the amount of files changed. The screenshot below is from a compare between two branches with 380 files ...
8
votes
6answers
728 views

Is there any language-aware diff tool?

Inserting newlines in the middle of a statement will appear as a change in most diff tools. But for most languages there are points of a code where you can insert newlines without altering the ...
8
votes
4answers
659 views

How does a wiki handle multiple simultaneous edits?

This has always lingered in the back of my mind, so I figure I might as well go ahead and ask. How does a wiki handle multiple edits on the same content? Here's a simplistic example of what I'm ...
8
votes
3answers
3k views

How to visualize or format a diff / patch file?

I have a patch file (unified diff), like the output from svn diff, git diff, or diff -u .... I want to review it, but the unified diff format - especially with many files & changes - is hard on my ...
7
votes
3answers
4k views

How to configure Beyond Compare 3 for Eclipse conflict resolution?

What is the correct parameters to get Beyond Compare 3 working with Eclipse/Subclipse conflict resolution? In Preferences > Team > SVN > Diff/Merge there's the option to specify an external ...
7
votes
5answers
603 views

Diff tool that can compare sub-sections of files

I'm looking for a diff tool that will allow me to compare just a sub-section of a file with a section of another file, or even of itself. Preferably eclipse based but will take all suggestions. Yes I ...
7
votes
4answers
4k views

Git thinks I am rewriting one of my files everytime I make a small change

I have a medium size Java file. Everytime I make a change to one of my files, BuildTable.java, Git reports it as a massive change, even if is only a line or two. BuildTable.java is about 200 lines and ...
5
votes
1answer
1k views

Compare two files with Aptana

I remember that before I updated my Aptana installation it had the ability to compare two selected files via right-click -> compare. Now it doesn't seem to have this feature enabled... I wonder if ...
4
votes
2answers
2k views

Highlight text diff on client?

I want to compare 2 text values on a web page and highlight the differences. Can I do this client-side, preferably with jQuery or Prototype?
4
votes
10answers
818 views

File differencing software on Windows?

Just wondering what's out there that everyone likes. I have to merge some changes among several developers (C#) and wanted to see what kind of alternatives to windiff are around.
4
votes
4answers
749 views

Stackoverflow diff system [closed]

How can I implement a text diff system that is similar to the one Stackoverflow is using. Could someone explain the overview of the system behind it? Is there any open source code available?
3
votes
1answer
350 views

How to diff Windows permissions

I have a small issue with Windows permissions (or rather, I'm trying to troubleshoot an issue which I think has to do with Windows permissions) and would like to compare and contrast permissions on ...
3
votes
1answer
1k views

Vimdiff: How to put all changes inside a particular function from one file to another?

In Vimdiff, I know I can use "do" or "dp" to move changes from one file to the other...but these are for individual changes. If I have to undo all changes inside a specific scope/selection (say undo ...
3
votes
2answers
1k views

Basic file version diff algorithm

I'm looking for a solution to compare two versions of the same file to get a representation of the changes/differences.
3
votes
4answers
7k views

Creating a patch file from a diff of 2 folders

I made some changes to an open source project without taking time to create proper patch files. Now, the maintainer of the project released a new version, and among new and edited files, there are a ...
3
votes
2answers
1k views

How to Diff Files Directly from the Linux Kernel GIT Repository?

I'd like to be able to diff files / directories directly from the Linux Kernel GIT repository without having to download full source. Specifically, I'm interested in two potential solutions: The ...
3
votes
9answers
2k views

xml diff in ruby?

What is the best/fastest way to merge two xml documents with ruby? I have two xml files, one that's formatted so it is visually appealing, one that isn't (and it has comments and whitespaces ...
3
votes
1answer
1k views

Apply Diff in PHP

I'm working with the Text_Diff PEAR package to diff to short text documents, where the Text_Diff object is created with a space-delimited list of the words in each document. I was hoping to store the ...
2
votes
2answers
445 views

Can i specify the module version id (MVID) when building a .net assembly?

We have some shared assemblies that get build automatically every night. When there are no changes made to the sources, i would expect the assembly binaries to be exactly the same as a previous ...
2
votes
1answer
1k views

Percentage value with GNU Diff

What is a good method for using diff to show a percentage difference between two files? Such as if a file has 100 lines and a copy has 15 lines that have been changed the diff-percent would be 15%.
2
votes
8answers
1k views

Free Diff tool that is configurable? [closed]

Is there a diff tool, that allows me to write regular expression to remove a line from difference. Like see the two lines: this.Visible = true; Visible = true; And can I write an expression such ...
2
votes
1answer
405 views

Any existing C# code (OSS) that will calculate diff between two strings and output html?

I need to compare two strings and output the diff in HTML (similar to MS Word "track changes"). Language is C#, this is (not surprisingly) a .NET web app. There are a few similar questions (like ...
11
votes
1answer
8k views

git visual diff between branches

This answer is great for seeing a visual diff between two files that are checked into git: How do I view 'git diff' output with a visual diff program? However, I'd like to see a visual diff ...
11
votes
4answers
3k views

Generating and applying diffs in python

Is there an 'out-of-the-box' way in python to generate a list of differences between two texts, and then applying this diff to one file to obtain the other, later? I want to keep the revision ...
11
votes
4answers
6k views

DIFF utility works for 2 files. How to compare more than 2 files at a time?

So the utility Diff works just like I want for 2 files, but I have a project that requires comparisons with more than 2 files at a time, maybe up to 10 at a time. This requires having all those files ...
11
votes
3answers
2k views

Text diff visualization control for WinForms or WPF

In continuation of the my previous question, are the any good controls for text diffs visualization? Something like StackOverflow's revision diff viewer but for WinForms or WPF Requirements: free, ...
9
votes
3answers
5k views

Bash: using a the result of a diff in a if statement

I am writing a simple Bash script to detect when a folder has been modified. It is something very close to: ls -lR $dir > a ls -lR $dir > b DIFF=$(diff a b) if [ $DIFF -ne 0 ] then echo ...
8
votes
3answers
2k views

Remove Lines from File which appear in another File

I have a large file A (consisting of emails), one line for each mail. I also have another file B that contains another set of mails. Which command would I use to remove all the addresses that appear ...
8
votes
2answers
6k views

Including new files in SVN diff

I have a script which builds my application, uploads it to a remote machine, runs a performance test there and captures some metrics that I care about. The script creates a patch file for the local ...
8
votes
9answers
19k views

oracle diff: how to compare two tables?

Suppose I have two tables, t1 and t2 which are identical in layout but which may contain different data. What's the best way to diff these two tables?
7
votes
6answers
5k views

Quickly find differences between two large text files

I have two 3GB text files, each file has around 80 million lines. And they share 99.9% identical lines (file A has 60,000 unique lines, file B has 80,000 unique lines). How can I quickly find those ...
7
votes
2answers
466 views

Is there a way to diff files sentence-by-sentence instead of line-by-line?

Just trying to get diff to work better for certain kinds of documents. With LaTeX, for example, I might have a long paragraph that is strictly just one line, but I don't want to see that entire ...
6
votes
1answer
4k views

Aptana File Diff?

I really like Aptana, it's very much the right IDE for me. However sometimes I find myself wishing it had a file diff tool. Given it's a fairly standard dev requirement, I'm surprised there isn't one ...
6
votes
6answers
279 views

Finding where source has branched from git

I have a git repository (covering more or less project history) and separate sources (just a tarball with few files) which have forked some time ago (actually somewhere in 2004 or 2005). The sources ...
5
votes
1answer
69 views

Measuring “closeness” in large source trees

As part of a question I posed earlier about finding the best match between two sources, where one has an active git repo and the other has no git history, I wrote a perl script to find the closest git ...
5
votes
1answer
692 views

git merge using the vs2012 diff tool

Is it possible to use the diff tool in visual studio 2012 together with git? Using "devenv /diff fileA fileB" i can bring up a diff between two files, but how can i add a third (base file) as well, ...
5
votes
1answer
1k views

Mercurial - diff multiple changesets at same time?

To diff we use: hg diff -c <xyz>: Show diffs for a given changeset hg diff -r <xyz>: Show all diffs since a given changeset But let's say you have changesets 4-5-6-7-8 where changesets ...
5
votes
3answers
375 views

How Show Revision History like Revisions

Walking the line here, I know, but... How does StackOverflow show the revision changes in the diff-like format they use. I don't care about SO per-se, it's just a convenient way to describe my ...
4
votes
2answers
133 views

Is there any formal way or known way to canonicalize an xml file to generate diffs?

There seems to be many questions WRT tool to generate diffs between xmls, but there wasn't this question yet, so anyone who knows this show me a link or paste any example anyone already solved this ...
3
votes
1answer
422 views

Perl text diff color

I want to be able to compare two text string and display the difference in color. I tried String::Diff but could not get the difference to display in color. I am using Windows with Active State perl ...
3
votes
2answers
706 views

find files not in a list

I have a list of files in file.lst. Now I want to find all files in a directory dir which are older than 7 days, except those in the file.lst file. How can I either modify the find command or remove ...
3
votes
1answer
9k views

How do I compare two columns in Excel?

Our organization has offices in several Zip Codes in all 50 states. Each year, some new offices are opened, some current offices are closed. Almost forgot: we have our own designations for the ...
3
votes
3answers
241 views

is there a simple way to know which files will be updated in the next 'git pull'?

i would like to know which files would be updated (and hopefully the changes that would occur) if i'd do a 'git pull'... is git stash git fetch git diff origin/master git stash apply the answer ...
3
votes
3answers
473 views

Method name from line number

Given a line number of a particular class source code (Java/C#) - is there an easy way to get the name of the method it falls within? (If it falls within one) (Presumably using an Abstract Syntax ...
3
votes
6answers
3k views

Comparison of bmp files?

I want to compare two bmp files. I thought of two approaches: to compare the header as well as the information header of the two files convert the bmp file to binary and then do the above ...
2
votes
3answers
146 views

Source Code Diff / Line and File Comparison

I’m looking for a tool that would be able to do a Diff for 2 zips containing my Project Source Code and provide me with a set of comprehensive metrics which would contain at least: • # of LINES ...
2
votes
1answer
201 views

SVNKit diff between dates

I am trying to use SVNKit to do a simple: svn diff url {date1}:{date2}. I cannot figure out how to use it on SVNKit. Does anyone know how to do this?