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

learn more… | top users | synonyms

0
votes
3answers
631 views

Interpreting “svn diff” output

Let's say there is no content in a.c file, and then one modifies the file as follows: #include <stdio.h> int main() { printf("Hello, world\n"); } Executing svn diff, I got this message. ...
1
vote
4answers
83 views

How to get the difference (only additions) between two files in linux

I have two files A1 and A2 (unsorted). A1 is previous version of A2 and some lines have been added to A2. How can I get the new lines that are added to A2? Note: I just want the new lines added and ...
1
vote
0answers
53 views

php - diffing nested arrays

I have 2 multidimensional arrays: $first_array = array( 0 => array(tid => 141), 1 => array(tid => 142), 2 => array(tid => 128) ); $second_array = array( 0 => array(tid ...
8
votes
4answers
1k views

How can I perform a diff that ignores all comments?

I have a large codebase that was forked from the original project and I'm trying to track down all the differences from the original. A lot of the file edits consist of commented out debugging code ...
0
votes
1answer
71 views

Text file diff library (MS licensed)

Does anyone know if there a way to tap into visual studios diff libraries to extend the functionality of my projects? I know that there are open source solutions for file diffing that I will consider ...
0
votes
3answers
164 views

Quickest way to diff two snippets of code?

Every now and then I will find snippets of code within an application that seem mostly identical, but I need to run a diff to either confirm they are the same or to find the small differences. One way ...
0
votes
1answer
55 views

CSS in one line, cant compare free vs paid theme file

This is annoying, I have a wordpress theme with a css file that is all in one long line. I wonder why anyone would do that. Now I have upgraded and I need to compare the old file with the new one so ...
1
vote
2answers
43 views

Is it possible to compare two different revisions with VisualSVN plugin in visual studio 2012?

With visualsvn plugin, I am able to compare current working copy with the head revision in the repository. But how could I compare two different revisions that is not working copy or head revision ...
12
votes
3answers
2k views

git diff renamed file

I have a file a.txt. cat a.txt > hello The contents of a.txt is "hello" I make a commit. git add a.txt git commit -m "first commit" I then move a.txt into a test dir. mkdir test mv a.txt ...
0
votes
2answers
62 views

PHP library to generate code diff (github style)?

I'm looking for an free php library that can generate code diff HTML. Basically just like GitHub's code diffs pages. I've been searching all around and can't find anything. Does anyone know of ...
1
vote
2answers
47 views

Why doesn't my name and email appear in patches?

I have a remote repo cloned in my local computer. After I make changes to a file, I commit, and then I do this to create a patch: hg diff -U 8 -p -r PREVIOUS_REVISION_NUMBER file_name > ...
7
votes
6answers
1k views

Common algorithm for generating a diff of the fields in two beans?

Let's say you have two instances of the same bean type, and you'd like to display a summary of what has changed between the two instances - for example, you have a bean representing a user's settings ...
1
vote
1answer
78 views

Git apply doesn't create new files?

I'm trying to create patch by diff and apply it. My patch has new file and after apply I'm getting an error. git diff master origin/master > patch1.diff git apply patch1.diff -v Checking patch ...
1
vote
2answers
2k views

subversion: How to: difference between modified working copy and alternate branch?

I have tried. My working copy is based on but a modified version of svn://foo.net/svn/repo/branch/yyy I want to diff against branch xxx. I have tried svn diff ...
-1
votes
1answer
56 views

comparing two directories with separate diff output per file

I'd need to see what has been changed between two directories which contain different version of a software sourcecode. While I have found a way to get a unique .diff file, how can I obtain a ...
0
votes
0answers
192 views

memory exhausted : for large files using diff

I am trying to create a patch using two large size folders (~7GB). Here is how I'm doing it : $:# diff -Naurbw . ../other-folder > file.patch But maybe due to file sizes, patch is not getting ...
1
vote
1answer
59 views

regex: ignore “!” to diff / merge two files with comments starting with “!”

I would like to merge - or at least diff - two Fortran namelist files while ignoring whitespaces. and lines starting with !. I have tried diff -w -u -I '!.*' FILE1 FILE2 diff -w -u -I '\!.*' FILE1 ...
0
votes
0answers
63 views

Use diff between two XML files to search/replace in C# files

I've got an XML file that I'm using in one of my applications via XPath. The structure of the file may change and I have to also at least somehow reflect these changes in a bunch of C# files. That is, ...
2
votes
1answer
208 views

How do you configure TortoiseSVN to use Visual Studio 2012 for diffing?

I want to use the new Visual Studio diffing tool for diffing changes via TortoiseSVN. What do I type in the external tool command line box?
0
votes
2answers
46 views

Identify added or removed text in HTML files using Perl

My problem boils down to, I have multiple versions of the same HTML page, and I want to know if this page has changed using Perl. These files contain html/javascript and written English. The changes ...
2
votes
3answers
3k views

Compare two MySQL databases, on command-line, with a free tool

I would like to generate diff-like SQL files to compare the DATA and the STRUCTURE of a MySQL database. These files would be executed as SQL queries, on command-line. There is various old threads ...
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? ...
15
votes
5answers
9k views

Diff files present in two different directories

I have two directories with the same list of files. I need to compare all the files present in both the directories using the diff command. Is there a simple command line option to do it, or do I have ...
3
votes
2answers
106 views

Why Managed and Unmanaged solution files are so much different in MS CRM?

I created solution in MS Dynamics CRM, then exported it as managed and unmanaged one. Decompressed both and I ran diff tool on customizations.xml files. And there are too many difference between them, ...
0
votes
1answer
103 views

Applying a .patch file? (patch for a jquery-ui file)

I found a .patch file that would fix an issue I have with jQuery-ui. However, after googling for a long, long time, I can't find any good answer to this. (I haven't dealt with .patch files before). ...
1
vote
1answer
159 views

using diff/patch in windows, aka, “can't find file to patch at input line 4”

I am using CVS and win7. I need to copy some changes from the trunk to a branch, so I thought I could just use "diff -ruN" to put the changes into a file, and then use "patch -i" to apply them to the ...
19
votes
6answers
2k views

highlight changed lines and changed bytes in each changed line

Open Source project Trac has an excellent diff highlighter — it highlight changed lines and changed bytes in each changed line! See https://trac.transmissionbt.com/changeset/12148 or ...
2
votes
1answer
98 views

Minimal change between two arrays

I'm trying to apply only the minimal number of changes when table's data is updated (it's an iOS app and table view is the UITableView of course, but I don't think it's relevant here). Those changes ...
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 ...
1
vote
1answer
27 views

How to set tab size for pager used in git diff?

I use the pager most It's pain to see diff output with tabsize=8. How can I specify tabsize==2 ? @@ -48,6 +49,7 @@ <div class="content_inner"> ...
0
votes
1answer
27 views

How to diff only the contents of two directories, not the files themselves

This will seem like one of those "been asked a hundred times" questions, but it is nuanced: I have two directories and I only want to compare their file structure (whether files & directories ...
8
votes
4answers
673 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 ...
0
votes
4answers
74 views

Diff after committing locally

I just cloned a repo from their remote. I built the software, changed about 4 files, committed them locally and now want to create a patch that I can show them. When I run : hg diff -U8p abc efg ...
5
votes
2answers
2k views

Subversion diff for zipped xml file

I'm using MySQL Workbench to maintain the database schema for an application. The .mwb file that Workbench uses, which is a zipped XML document, is kept in a Subversion repository. The file is ...
10
votes
8answers
6k views

Any visual diff in Linux console?

Many years ago I used d32 which was available for DOS and Linux. Is a non-GUI visual diff available for Linux like this one? Any others than Vim and Emacs (Vim and Emacs are too powerful :-) )
2
votes
1answer
37 views

How do I determine the lineage of several sets of source code?

I have several hundred sets of source code where I know that files were copied from one project to another. Most of the projects were checked into subversion long after the fact (the revision history ...
2
votes
3answers
138 views

Is there a java library which can find the binary delta between 2 object instance's serialized state

I have uploaded a Java Game Server to github. I would like to provide the following functionality to users. When the game state changes, only transmit the delta to the connected game clients, thereby ...
18
votes
5answers
5k views

JavaScript based diff utility

I'm looking for a diff equivalent written in JavaScript that only returns/prints relevant lines. I don't want both full text displayed next to each other with the differences highlighted, but just ...
9
votes
3answers
2k views

How can I get a git submodule's associated commit ID from a past commit in the parent clone?

Is there a way, short of actually checking out the parent commit, to determine a submodule's SHA-1 commit ID based on a commit ID in the parent clone? I know I can find the currently associated SHA-1 ...
0
votes
1answer
65 views

Mercurial diff subset of files, by file content

I want to do a visual diff of all files in my working copy which contain a given string - say "TODO" or "REL 1.00.01" The diff is against another revision (specifically the head of another branch). ...
8
votes
5answers
3k views

Using git diff, how can I get added and modified lines numbers?

Assuming I have a text file alex bob matrix will be removed git repo and I have updated it to be alex new line here another new line bob matrix git Here, I have added lines number (2,3) and ...
2
votes
4answers
1k views

Convert raw diff file to colorized html output

Does anyone know of a script that can accept a raw diff file and pretty print HTML output (which would be easier to review/mail)? A google search returned me some results like ...
4
votes
1answer
1k views

Diffing a JSON document

Well, my question is a little complicated, but here goes: I have a Python server that stores client (written in JavaScript) sessions, and has complete knowledge of what the client currently has ...
10
votes
4answers
1k views

Does nodejs have a working diff library or algorithm?

I'm looking for a javascript diff algorithm implementation or library, which has been tested on and works with arbitrary utf8 text files. All of the ones I found so far (say for example, ...
2
votes
0answers
61 views

git ignore blank lines [duplicate]

I have a code on which I worked with Netbeans. Another coder made some small changes to my code, but the problem is that git reports me that many files were edited. The other coder editor added some ...
1
vote
1answer
224 views

Worst-case behaviour of Python's HtmlDiff.make_table()

I'm using Python 2.7's difflib.HtmlDiff.make_table() function to generate diffs between expected and actual files for an internal test case runner. They end up in an HTML test report. This has worked ...
3
votes
2answers
40 views

Files changed between commits but with limiting file list to older commit

Situation: I have an old commit that I need to merge selectively with the latest commit. Some files have no changes and other files have significant changes that I need to review and merge ...
0
votes
1answer
437 views

tool to generate HTML diff - from UCM activity and checkout files

We use ClearCase UCM with intelliJ. Intellij has this feature to generate HTML diff report for all files in a UCM activity. It compares current version (checkedout locally) with previous version, ...
0
votes
0answers
27 views

Diff of files that have been added but not committed using GIT? [duplicate]

I have added a bunch of files using the following command: git add . But before I commit the changes, I would first like to review the changes again using diff. What is the command to achieve ...
-1
votes
1answer
32 views

How to implement diff for tree of strings?

How to implement a function that interprets the difference between 2 trees of strings? For example: diff(["aaa","bbb",["ccc","ddd"],"eee"], ["aaa","bbx",["ccc","ddd"]]); This function should ...

1 3 4 5 6 7 38