Changes between one version of a file and a former version of the same file
0
votes
1answer
136 views
How to use diff and patch in Cygwin on Windows?
I follow many articles out there but I still don't know how to use diff and patch in Cygwin
Here I create 2 files in Windows Explorer
origin.txt
one
two
three
new.txt
one
four
five
Then I diff ...
2
votes
4answers
55 views
Datetime Difference Error
I have a problem when I use difference of the datetime.
Here is the php code
$datetime1 = new DateTime('2009-10-11');
$datetime2 = new DateTime('2009-10-13');
$interval = ...
-1
votes
1answer
47 views
Easy way to print out a list of changed functions for php project [closed]
I have a original project and a fork and like to know if there is a easy tool/command for linux to print out the function(method/class) names that have been changed when comparing/diffing 2 folders ...
0
votes
2answers
43 views
Git - differences between commits for a specific file
I want to view all the differences between my old commits for a specific file.
What should be the command for it?
0
votes
1answer
40 views
How to exclude multiple line patterns using diff?
I want to do a diff over two xml files but ignore 2-3 line patterns.
eg: Say I want to ignore availability & price while comparing the xml format below.
Here is what I have so far:
diff -I ...
0
votes
0answers
73 views
DIFF command in UNIX for ignoring empty lines
I have to compare two routines/text files using DIFF command in UNIX.While comparing in this case how do I ignore empty line spaces between the two files
Below command works fine in windows but not in ...
0
votes
1answer
51 views
Git diff filenames breaking consistency
This line was taken from a raw diff consisting of 2852 file changes (switched multiple libraries).
diff --git "a/system/cms/config/database.php\n" "b/system/cms/config/database.php\n"
Out of all ...
2
votes
1answer
77 views
Tortoise SVN Diff color codes
Could anyone explain the color codes when doing a diff in SVN, i.e. some lines are marked as red, yellow, blue..etc
1
vote
2answers
34 views
Exporting diffs without having to commit in Mercurial
I am using TortoiseHg GUI and it seems that there is no way to export diffs between my uncommited changes and the last revision. Is there a way to do it using hg ?
My requirements :
I do not want ...
0
votes
1answer
151 views
How to find duplicate lines across 2 different files? Unix
From the unix terminal, we can use diff file1 file2 to find the difference between two files. Is there a similar command to show the similarity across 2 files? (many pipes allowed if necessary.
Each ...
0
votes
0answers
43 views
Csc.exe compiles “different” .dlls from same .cs [duplicate]
Give a source .cs file as simple as below, is there any way to produce identical .dlls with MSBuild (or at least with csc.exe), so their binary hash would match?
foo.cs
public class Foo
{
public ...
1
vote
1answer
22 views
Output for svn diff not generating expected contents
When I run the following command from my working directory:
svn diff > c:\temp\diff-results.diff
I expect the diff-results.diff file to store the modifications I made to files in my working ...
1
vote
4answers
78 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
51 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 ...
0
votes
1answer
72 views
unable to catch svn command output using exec function
I tried to check status of a file in svn working copy by issuing following commmand:
svn status /home/guna/server/local/svndump/site/head.php
Which outputs results like,
M ...
0
votes
1answer
68 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
1answer
53 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
42 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 ...
0
votes
2answers
59 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
1answer
70 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
45 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 > ...
0
votes
0answers
171 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
56 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
62 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, ...
-1
votes
2answers
58 views
PHP 4 code give errors on php 5 [closed]
I have PHP 4 code to check differences of two files, this works fine on old servers with PHP 4 versions, but on new servers I'm getting errors. For example:
$maxlen is no defined
And the ...
2
votes
1answer
188 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
43 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 ...
-1
votes
2answers
83 views
diff two XML files
I have xml document like this:
<datatypes xmi:id="ID_01"</datatypes>
<datatypes xmi:id="ID_02">
<fields xmi:id="ID_03">
<datatype xmi:idref="ID_01"></datatype>
...
3
votes
2answers
101 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, ...
1
vote
1answer
136 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 ...
0
votes
1answer
95 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).
...
2
votes
1answer
93 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 ...
1
vote
1answer
26 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
26 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 ...
0
votes
1answer
63 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).
...
-1
votes
1answer
53 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
4answers
73 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 ...
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 ...
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 ...
0
votes
0answers
36 views
Apply patch to a file so resulting file contains all data
In my scenario i have two files
ex: file1.c has function1(); function2(); function3(); function4(); function5(); (with function1(); and function3(); implemented)
file2.c also has function1(); ...
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
61 views
Github like diff view for TFS
I've been looking through the web and here on SO for a tool and/or native way to have my TFS server show me all the diff of the files in a changeset in 1 overview much like Github does. Unfortunately ...
0
votes
1answer
113 views
“diff.exe” missing from Portable Cygwin
Due to lack of privileges/permissions/influence/power/charm/money, I am unable to install the full Cygwin at my works computer. So instead I make do with
portable Cygwin.
I was horrified to discover ...
1
vote
3answers
149 views
Compare multiple files for common code
I have two projects each with a massive code base. I'd like to run a tool to go through all the files in every project and show me which files across the projects have similar code. I'm not even sure ...
0
votes
1answer
219 views
Why am I getting different results from diff commands in Sublime Text 2
I am reconciling a group of text files, many of which have the exact same content. Using Sublime Text 2, I can diff these files in one of two ways (there may be more, I don't know)
Open the two ...
-1
votes
2answers
128 views
Compare two strings (similar to how GNU diff does) [closed]
Is there any open source project or library, which has the ability to compare two strings in the way GNU diff does, but without launching an external process, and working with memory buffers instead ...
-5
votes
2answers
41 views
Can someone please help me make meaning of diff in git and svn [duplicate]
This is the output I get of the diff
diff --git a/README.md b/README.md
index cda48bc..95ce355 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,3 @@
THIS IS LINE 1
-THIS IS LINE 2
+THIS IS LINE X
...
1
vote
1answer
115 views
Bash Script exiting without error while using diff
I'm fairly new to using bash and was trying to create an autograder script for running some test cases. Currently my bash script seems to be acting strangely; when I have the -e flag set bash will ...
0
votes
2answers
37 views
Merge/diff tool that can show authors (supports blame or annotate) in files under version control
When merging files it will be helpful (as for me) to show an author of each line. Is there any diff or merge tool supporting that?
