Changes between one version of a file and a former version of the same file
0
votes
1answer
80 views
recursive diff to create a patch and apply patch recursively
I'm running into trouble using patch. I have 2 folders with many subfolders and files.
diff -ur backup/www/ www/ > sync.patch
Next, I'm trying to apply the patch.
patch < sync.patch
It ...
2
votes
1answer
39 views
Looking for a way to calculate the number of lines that have NOT changed between two commits
I'm working on a project that's under an old copyright, and I'm trying to make a good case to drop the copyright, because the project has significantly changed over the years.
(Don't worry, not ...
0
votes
0answers
8 views
Is there an application that will take two snapshots of a system or VM and compare them? [closed]
I'm trying to determine exactly what changes are being made to my system by an MSI installer (for J# SE, as it happens). Is there an application I can use that will compare two snapshots of a system ...
0
votes
3answers
623 views
How to diff-compare two xml files using java
I have two xml files that I want to compare:
old.xml:
<EMPLOYEES>
<employee>
<id>102</id>
<name>Fran</name>
<department> THIS IS COMPUTER ...
0
votes
0answers
34 views
Free utility to do diffs over previous versions of files in Win 7?
The "Previous Versions" facility of Win 7 is almost like having a light-weight source control system running in your file system. All it needs is to be able to Diff over different versions.
Here is a ...
0
votes
1answer
101 views
Source-tree diff summary information
I'd like to find out what has changed between versions of a large project such as Mozilla-Firefox, i.e. similar to the question but must work on Linux and is open-source. I'm aware of Source Code ...
3
votes
3answers
164 views
Diff utility that is C++ aware
Is there a free diff utility that can compare two C++ files using their ASTs instead of the text?
What I was thinking of is something like:
- convert both files to AST
- Render AST back as C++ code ...
-1
votes
1answer
60 views
How are these two strings different? [closed]
Someone please stop me from going insane.
I have two strings that look identical, but are flagged by Linux "diff" as different. They also have different md5 and sha1 hashes.
Is there a way I can ...
-4
votes
1answer
80 views
Make git print a unified diff between two given commit [closed]
Also, how to refer to the commits? Hopefully I don't have to type those
terrible hash-strings!
0
votes
0answers
91 views
git diff between two commits --name-only are showing me files which aren't changed
I want to get the files which were changed since a particular commit. I use the following and it works well:
git diff SHA..HEAD --name-only
However in certain cases (especially when another branch ...
0
votes
1answer
70 views
Diffing and Synchronizing 2 tables MySQL
I have 2 tables, One with new data, and another with old data.
I need to find the diff between the two tables and push only the changes into the table with the old data as it will be in production.
...
0
votes
1answer
33 views
How to store the different value between two string?
For example, here is the simple text:
This is a texting sentence.
and this is the modified one:
This is a testing sentence.
As you can see the x is replaced by s, how can I store this information? ...
2
votes
6answers
56 views
Retrieving part of common content of the two texts
I really don't know how to proceed from the following. Suppose I have two files, file1 and file2. These files consist of a long list of two entries each of which have the same structure
A : some ...
0
votes
1answer
10 views
Failing to diff some subdirectories' files
I am using the diff command to compare directory and subdirectories' files like so :
diff -bBE ./dir/* ../parent/dir/* >> diff.txt
But I am getting that :
diff: extra operand `./dir/somefile'
The ...
0
votes
2answers
187 views
Is there a free diff tool that allows in-line edits - like Beyond Compare?
I use KDiff3, but miss Beyond Compare's ability to modify text (or undo changes) while looking at the diff output. Is there any free windows tool that allows it?
0
votes
3answers
300 views
Why would Vim add a new line at the end of a file? [duplicate]
Possible Duplicate:
VIM Disable Automatic Newline At End Of File
I work with wordpress a lot, and sometimes I changed wordpress core files temporarily in order to understand what is going ...
5
votes
3answers
140 views
Array mutation algorithm
I am looking for a solution to the following problem:
Given an array "a" and an array "b", find a set of operations, which when applied to "a", transforms "a" into "b".
So for example, given that I ...
0
votes
1answer
134 views
How do I use BBEdit's command line tool: bbdiff to compare local and remote files?
I just learned about the existence of bbdiff. I'm told this is possible to use to compare local files with remotes. But I can't find ANY documentation on how to do it.
$ bbdiff --help
Usage: bbdiff ...
1
vote
2answers
23 views
Can you stage a file (or at least, a section of a file) DURING a git diff?
Before I stage files, I like to perform a git diff to check that everything is okay. While I'm vertically traversing down a diff, I make a mental note of each file that is "OK" for staging. If it's a ...
0
votes
1answer
58 views
finding different in two folders with only changes between two files with a filter
in Ubuntu, I can use this command to find different files between two folders:
diff -qr folder1 folder2
would it be possible to add a filter for checking only in files: .cpp and .h?
Thanks in ...
1
vote
1answer
158 views
Show only changed lines with diff, not newly added lines
I'm curious if there is a way to get only changed lines with diff, not the newly added lines?
I mean, let's say I have two files file1 and file2.
file1 is:
abc=123
def=234
klm=10.10
xyz=6666
...
0
votes
1answer
44 views
How to create a collaborative wikipedia-like section for a site? [closed]
A site must implement collaborative pages. Those pages are supposed to contain summaries of a popular movement. Nobody must have the power to dictate it, so the resulting text must be synthetized by ...
8
votes
3answers
902 views
get the differences in 2 DataSets c#
I am writing a short algorithm which has to compare two DataSets, so that the differences between both can be further processed.
I tryed accomplishing this goal by merging these two DataSets and get ...
0
votes
2answers
63 views
Graphical diff viewer between local and repo file
Here is my use case.
I want to compare a local file i am working on with a repo file using a diff viewer.
For example
file 1 : /path-to-local-file-in-my-computer
file 2 : ...
0
votes
2answers
82 views
diff showing difference when there is none [closed]
These two files show as different when compared with
diff d_out.txt D_out.txt
I'm using Ubuntu (12.10) terminal.
The content of d_out.txt
ABCADBACDABCADBACDAB
ABCABCABCABCABCABCAB
CRASH
CRASH
...
0
votes
2answers
108 views
Applying a patch that modifies multiple files
Im trying to apply the patch here, I's saving it as xLoader.patch
http://gitorious.org/x-load-omap3/mainline/commit/ee120c894c3377054bda149748eb0621f2f843c8?format=patch
It modifies more than one ...
0
votes
1answer
28 views
How to update only a particular file from one branch to the other using EGIT in eclipse?
I've an updated file Constants.java in branch A. Now I need to switch to branch B. I need only the updated Constants.java file in branch B. How do I achieve this using EGIT in eclipse?
0
votes
2answers
107 views
mercurial - see changes on the branch ignoring all the merge commits
I have a branch that was developed for a long period of time. During the development default branch was merged into that branch several times. I would like now to review all the changes done on that ...
0
votes
1answer
31 views
How can I know the line equivalence of two similar files?
When I add a line to the middle of a file, all following lines have their number incremented.
Is there a utility that generates the list of equivalent line numbers between two files?
The output ...
3
votes
2answers
43 views
Compare execution log's ignoring the execution times
I'm new on linux SO and bash commands and i think someone with more experience could help me. I wanna compare 2 different text files with log's of an execution, but some lines (not all of them) begin ...
0
votes
1answer
53 views
PHP: Save only the changed part of a post to a database
I have a website, where users can submit some text. Users can edit their posts and then save it. User can then go through all the changes he/she did to a post.
Problem:
Whenever they edit a post, I ...
2
votes
1answer
214 views
Google-diff-match avoid showing new lines?
I am using diff-match http://neil.fraser.name/software/diff_match_patch/svn/trunk/demos/demo_diff.html
To show differences between 2 pieces of html. The problem is that the script shows new line as ¶
...
2
votes
3answers
404 views
Comparing image in url to image in filesystem in python
Is there a quick and easy way to do such comparison?
I've found few image compare questions from stackoverflow but none of those actually proved answer for this question.
I have images files in my ...
1
vote
1answer
206 views
Reading git diff output
I am just starting to learn how to use git and have run git diff on the files below - Im a bit confused about how you read the output -
From what I understand so far the below is saying there is a ...
0
votes
1answer
99 views
liquibase: generate changeset from 2 databases
How is it possible to use liquibase for comparing "original" database and "updated" one to generate the changeset from the differences (postgresql)?
I checked documentation and realized that there is ...
0
votes
0answers
43 views
diff ignore blank likes
How can I get GNU diff ignore the blank lines in the following example?
File a:
x
do
done
File b:
x
do
done
Neither file has trailing white spaces in any line.
Using GNU diff 3.1 on Mac OS X ...
0
votes
0answers
85 views
Diff two CSVs, make third with results of diff to a third CSV?
Basically what I am trying to do is take a csv that I generated via AWK, and compare it to the CSV created from the last time I ran the script (which becomes ./export_files/"TT_MagentoImport_"$(date ...
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
301 views
Diff between two branches in a client workspace
I have two branches in my local workspace. I need to take a diff between them and capture the filenames in a text file.
I looked into diff and diff2
p4 diff
gives the diff between a branch in the ...
0
votes
1answer
98 views
Git Patch to HTML parser
I have spent two days researching for a library or some sort of PHP function to parse the git patch GitHub's API returns and I can't find anything I can use.
I was able to take out a decent amount ...
0
votes
0answers
18 views
how to compare DataModels of two treeviewers and show diff
how to compare DataModels of two treeviewers and show diff in our java RCP application ?
I was able to show the xml file diff using org.eclipse.compare, can we use the same api ?
6
votes
1answer
184 views
Git: what does the number of +/- signs in diff / merge output mean? [duplicate]
Possible Duplicate:
Git Merge: What does this mean?
Git diff --stat explanation
Sorry for the stupid question, but i can't find a clear answer anywhere.
When you merge two branches in ...
0
votes
2answers
42 views
Inserting styles into an html table
I am storing old html markup in my database, tracking changes, and then trying to render the diff using Differ and the :html format option.
The following code is successfully generated:
...
3
votes
2answers
99 views
diff adds new function inside existing one rather than after
Good day everyone,
I've started paying a little more attention to the diff files I am creating (with git) and I am unhappy with the clarity of the diff this situation creates.
I start with:
sub ...
1
vote
2answers
57 views
Splitting one commit into 2 and get the resulting diff
I recently posted a diff to review board at work. I didn't really check the diff until after and I noticed that whitespace at the end of lines was removed by my editor. I'd like to split those ...
4
votes
1answer
390 views
How to get git diff with full context?
How to create patch suitable for reviewing in crucible?
git diff branch master --no-prefix > patch
This generates only 3 lines of context. So I do the following
git diff --unified=2000 branch ...
0
votes
1answer
68 views
Shell script, checking homework copy violation
I intend to check submited h.w answers in .c code.
does someone have link or bash shell script code that checks for file similarity (percentage of similar lines, etc...)?
0
votes
1answer
146 views
Shell Script - Using the diff command
This doesn't seem to be working correctly.
$4 is a C file. $in is the input file. $5 is a newly created output file, after $in inputs to $4 (I'm not really sure about this one.)
$out is an output ...
2
votes
1answer
141 views
Why can git pre-receive hook show recent file change but not diff it?
In trying to write a pre-receive hook which rejects certain kinds of changes to certain kinds of files, I am stumped as to why the following is legal in that script:
git show ...
0
votes
1answer
52 views
Show diff between two files in specific format
here is the question: I have two files:
file1:
aaa
bbb
ccc
ddd
file2:
bbb
ddd
HOW TO USE DIFF TO GET THIS OUTPUT (only differences)
aaa
ccc
