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

learn more… | top users | synonyms

3
votes
1answer
51 views

VIM - Passing colon-commands list via command-line

Good day, I am writing a simple script within my BASHRC file to accommodate something I couldn't quite resolve in a previous question: Side-by-side view in Vim of svn-diff for entire directory I ...
1
vote
3answers
277 views

Side-by-side view in Vim of svn-diff for entire directory

I have a MacVim setup on my OSX machine so that the default Vim application (ie: /usr/bin/vim) is actually a symbolic link to the command-line version of Vim that ships with MacVim (ie: ...
2
votes
1answer
97 views
+100

How to use Team Foundation's library to calculate unified diff?

I am trying to calculate a unified diff comparing two documents. (Wikipedia says unified diff is the best plain text diff format). Team Foundation has a command line interface do that > tf diff ...
0
votes
0answers
7 views

CompareDialog is making me click on each structure element to see the text

I'm working on creating a CompareEditor that does custom comparisons based on input that comes from an Abstract Syntax Tree. The input fed into the CompareEditor comes from DiffNodes, each ...
0
votes
0answers
3 views

Class 'Horde_String' not found in \pear\Horde\Text\Diff.php

I am trying to set up a class for tracking changes in the content by different authors. I did RnD and found text_Diff is the pear package which is responsible for the same. Later, text_diff is ...
-2
votes
1answer
20 views

Diff software for Mac

not sure if this is the right place to ask this. I have been looking for a good "Diff"ing software for Mac OSx 10.8.3, something like "Meld", which has a clear GUI and it is possible to edit the files ...
0
votes
2answers
28 views

How to see git changes after moving code around?

I am looking at a git diff, most of it is the same code moved from one file to another plus whitespace. How could I see the real differences? I tried git diff -b -C -C to no avail.
0
votes
2answers
27 views

Output difference of 2 txt files to a 3rd txt file

I'm trying to run a bat file that will compare 1 file to another and output the differences I've tried using gnu diff utilites, fc, and endless googleing to find a solution but I cant seem to figure ...
0
votes
4answers
67 views

php compare/diff an array with an array of objects

I have 2 PHP arrays, a simple one: array 0 => int 5 1 => int 6 and an array of objects: array 0 => object(stdClass)[43] public 'id' => int 1 1 => ...
2
votes
3answers
691 views

Saving the output from DiffPDF / ComparePDF command line. - Comparing folders of PDF's

We have to do a comparison of about 1500 PDF's in one folder with 1500 PDF's in another to check for visual differences. We have found DiffPDF(and comparePDF command line version) for Windows which ...
2
votes
4answers
647 views

Character-wise string diff in PHP

In short I am looking for something like google-diff-match-patch in PHP. I have had a look at some similar questions at SO, and also at the algorithm provided here, but all of them fail: ...
1
vote
1answer
31 views

git diff between two different files

In HEAD (the latest commit), I have a file named foo. In my current working tree, I renamed it to bar, and also edited it. I want to git diff foo in HEAD, and bar in my current working tree.
6
votes
4answers
2k views

Recursive diff of two python dictionaries (keys and values)

So I have a python dictionary, call it d1, and a version of that dictionary at a later point in time, call it d2. I want to find all the changes between d1 and d2. In other words, everything that was ...
3
votes
1answer
47 views

Use output of two greps with diff

How do I make better the following method of comparing certain lines (lines that start with "@") of two files? I feel certain this could be done on one line and without embarrassing temporary files. I ...
0
votes
1answer
36 views

Getting Seconds interval between NSDate, but get always zero seconds

I want to get diff seconds between NSDate. I used [NSDate timeIntervalSinceDate] methods, but it returns always zero. Below is my code. NSLog(@"sent date : %@", message.sentDate); NSLog(@"prev: %@", ...
0
votes
0answers
26 views

How to find the difference between the 2 directory using diff?

I have a directory A and AA , in A is default setup directory and AA is customized directory ,So from this i need to know the exact difference of contents between A and AA files using diff command ...
9
votes
2answers
5k views

How do I integrate Beyond Compare with ClearCase?

I would like to integrate Beyond Compare with ClearCase so that I can use it for diffing and merging files, instead of the awful tools provided by ClearCase. Does anyone have instructions for ...
8
votes
2answers
170 views

How to get more lines of context in Github

In github commit viewer or pull request viewer, or the compare view, can I have it show more lines of context around the diffs? Using git cli, I'd do git diff -U100 (or however many lines of context ...
1
vote
0answers
57 views

Diff for Directed Acyclic Graphs

I'm looking for an algorithm which can diff two Directed Acyclic Graphs(DAGs). That is, I'd like an algorithm which produces a sequence of deletions and insertions on the first DAG to produce the ...
6
votes
4answers
1k views

emacs magit diff highlighting

I'm just getting started with magit. I really like it, except that the diff viewer is really annoying to me. The chunk highlighting makes no sense because as I scroll around the cursor moves with the ...
0
votes
0answers
121 views

A programming-language-friendly edit distance algorithm for building the next generation diff [closed]

I have been looking at ways to improve the diff highlighting for the diff I use the most, which is git diff --porcelain along with diff-highlight. I have found a lot of literature in the field of ...
0
votes
2answers
139 views

Mysql time diff between the dates in same column

I want to take the "Created" time difference between stalled(NewValue) and stalled(OldValue) for the particular ticket_id Note : This is my first post.I can't attach the pic due to some restriction. ...
0
votes
1answer
10 views

Confirming many duplicate files are the same (diff)

The previous person to work on the project I'm updating had a bad habit of just copying all of the files into a new directory when we got a new client. So now I have 10 directories with over 100 files ...
4
votes
0answers
91 views

Strange conflict on git

I read an article about three-way merges (diff3). He gives an example about how detect a conflict. His example is : A=[1,4,5,2,3,6] O=[1,2,3,4,5,6] <<< Origin B=[1,2,4,5,3,6] In the first ...
1
vote
3answers
54 views

Programatically find and apply schema differences on SQL Server

I have a product that I'm currently authoring that relies on SQL server for the backend. One issue I'm trying to resolve is to improve the 'upgrade' story. So v1 will have a particular schema and v2 ...
0
votes
2answers
32 views

php check file diff exist and get file diff

How can I check and find differences(e.g svn diff, netbeans diff) between two files using php? Platform : Win 7 32bit, PHP 5.4.7 (VC9 X86 32bit thread safe), XAMPP Version 1.8.1 Loaded extensions : ...
0
votes
1answer
18 views

Is there something similar to diff --show-c-function in git-diff?

I've been working on a file in my git repository. If I have a copy of the original git version of the file, I can run diff --show-c-function to get a comparison of the 2, files, where (in theory) it ...
1
vote
0answers
24 views

svn merge --dry-run Show svn diff

I'm working with a codebase that has (historically) been merged by hand rather than via svn merge. I'm trying to change that by proving to everyone how useful merge is - but when I do a dry run, I ...
1
vote
1answer
35 views

How to make git diff ignore comments

I am trying to produce a list of the files that were changed in a specific commit. The problem is, that every file has the version number in a comment at the top of the file - and since this commit ...
0
votes
2answers
37 views

How to redirect output of command to diff

I am trying to write a loop, and this doesn't work: for t in `ls $TESTS_PATH1/cmd*.in` ; do diff $t.out <($parser_test `cat $t`) # Print result if [[ $? -eq 0 ]] ; then printf "$t ** ...
0
votes
0answers
27 views

Tree-based diff (for HTML/XML) in Python 3x

I am trying to find a library that will allow to perform "tree-based" diffs, or diffs that are aware of DOM structures. I have two lists with HTML content that I want to perform differential analysis ...
0
votes
0answers
10 views

Large file binary diff with permissive license

I'm looking for a native library or perhaps relatively simple algorithm to create and apply binary patches for files up to 1GB in size. These are binary database exports and unfortunately there's no ...
1
vote
4answers
916 views

Database diff tool

Anyone aware of any commercial of free tool that shows you the difference between two mysql databases. We need to sometimes updates code and db patches on multiple live machines and need a ...
0
votes
1answer
67 views

Tool to compare HTML files and produce report in HTML or XML format

I want to provide a diff report for a non regression test. Regression test is to compare HTML files and generate report about which files are same and which are not same. I found one tool called ...
5
votes
4answers
733 views

Graphical multiple file-pair comparison on Mac OS 10.7

Is it possible to view "svn diff" output graphically on Mac OS? Most of the graphical diff programs allow you to view only one file per time. Which is very inconvenient when you use svn and have ...
0
votes
1answer
47 views

diff - find specific change between two values in hex dump

Good day, I am analyzing hex data from binary data dumps from a basic command-line program of mine. I'm basically dumping the exact contents of a struct (a large array of structs, actually) to a text ...
1
vote
2answers
74 views

Where can I find the patience diff implemented?

It is well-answered on this site that Bram Cohen's patience diff is found in bazaar as the default diff and as an option with git diff, but I am finding it difficult to source an independent ...
1
vote
1answer
47 views

How do I exclude certain files from a svn diff?

I'm using svn diff -c 789 to show the changes made in revision 789 of our software, but it's showing a lot of files I don't care about, in particular test files. How can I exclude certain files from ...
3
votes
1answer
46 views

Your license is not valid in diff tool [closed]

I've recently been trying out the Semantic Merge beta from Codice Software, suddenly when I try to use the diff tool (either within Visual Studio or manually from the desktop) I get the following ...
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 ...
10
votes
4answers
538 views

MySQL DDL Trigger, Diff table schema for column rename

I am creating a PHP script to compare schema of two databases. I have managed to check for schema changes with regard to dropped/added tables, columns, indexes, references but when it comes to ...
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
0
votes
0answers
30 views

git: diff text files as binaries?

I'm in a very strange situation. git diff foo.cpp gives some changes: - Node* opr1 = add->in(1); - Node* opr2 = add->in(2); - if (...) + Node* opr1 = add->in(1); + Node* opr2 = ...
1
vote
0answers
12 views

Diff Application That Shows CSV As Cells

I normally use WinMerge or KDiff3 for diff'ing files. However, I saw a nice feature in BeyondCompare that I haven't seen in these free tools. It has the ability to display the comparison on csvs as a ...
0
votes
3answers
33 views

How can I diff 2 files while ignoring leading white space

I have 2 source files, they are different versions of the same thing. However, one has been through a different editor that made indent changes, so all the lines are showing up different in diff. Is ...
12
votes
1answer
9k 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 ...
2
votes
2answers
451 views

Highlighting added/deleted lines, ignoring moves, in a patch file

I'm reviewing a patch that moved a lot of things around, added a few things, and removed a few things. I'm wondering if anyone's written a utility for picking out the unique adds/removes in a ...
0
votes
1answer
28 views

How do i diff two files from the web

i need some help on the command line. I want to see the differences of 2 files that not in the local filesystem but on the web. So, i think if have to use diff, curl and some kind of piping. ...
0
votes
1answer
21 views

Git undo changes to files which match regex in particular changeset

Say I have a bunch of files which were modified by changeset X. This changeset is currently HEAD. I want to separate all changes to files that match regex '*Test.java' into another changeset. If I do: ...
0
votes
0answers
26 views

Diffing a .ttx file in git

I'm trying to diff a .ttx file (bilingual .xml translation file with source (English) strings and target (Spanish) strings and a ton of metadata) with git and it's treating it as a binary so it won't ...

1 2 3 4 5 38