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

learn more… | top users | synonyms

0
votes
2answers
50 views

Comparing two arrays to get the difference and (possibly) returning a single array in PHP

I have a MYSQL table to record status log updates for a web app. There are several fields that will be populated but the thing is not all fields will be updated at one time. What I am planning on is ...
0
votes
1answer
126 views

FreeScale LTIB source control with patch files using “diff” & “patch” commands by excluding binaries and object files

I was wondering if there is any way to generate the the patch file for Free scale "LTIB" using "diff" command (by excluding binary files,object files and other temporary files that were generated ...
0
votes
0answers
10 views

DIFF remove several folders

I am trying diff -r -x "*folder/subfolder*" old/ new/ and I still get diffs regarding the -x's arg folder. I have tried -x "*folder\/subfolder*" - also not working. How can I get rid of those diffs? ...
2
votes
1answer
113 views

View “cvs diff” output in two columns with vim

I have "cvs diff" output (for all files in project) in unified diff format. Format could be like this: Index: somefile.cpp =================================================================== RCS ...
13
votes
10answers
2k views

Does anyone know of an advanced diff tool for C#?

I'm looking for a diff tool that can analyse my code and tell me what has changed on a construct by construct basis. For instance, if I cut and paste a method from the start of my file and put it at ...
0
votes
2answers
69 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 : ...
7
votes
3answers
258 views

Save changes in contenteditable with timestamp

I have a <div contenteditable="true" /> that the user can write in that is pretty much unlimited in length. The data in the div is saved on change with a timestamp in a MySQL database. Now my ...
6
votes
2answers
159 views

In git, how do I increase the context for merges?

When I merge large changes, git often gets hopelessly confused because it's not using enough context lines. It gets mixed up between the similar-looking endings of two different subroutines that both ...
18
votes
2answers
1k views

How to set patience as default git diff algorithm

In .git/config I tried: [diff] patience = true But no luck Do I have to do: git diff --patience git show --patience HEAD etc., every time?
0
votes
0answers
38 views

Python Difflib - How to Get SDiff Sequences with “Change” Op

I am reading the documentation for Python's difllib. According to the docs each, Differ delta gives a sequence Code Meaning '- ' line unique to sequence 1 '+ ' line unique to sequence 2 ' ...
1
vote
3answers
47 views

diff with ignore matching lines doesn't work as expected

file1.txt ################################################### Dump stat Title information for 'ssummary' view ################################################### Tab=> 'Instance' Title=> {text ...
0
votes
2answers
218 views

extracting frequency of signal from FFT

I am new to Matlab and FFT. I need to extract the dominant frequency from a signal which is varying in magnitude and frequency. I tried to perform a detrend and then an FFT to obtain the frequency but ...
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 ...
27
votes
2answers
3k views

How do I exit the results of 'git diff' in git bash on windows?

I'm using git bash on Windows 7. When I run git diff, I see this: However, I'm unable to get back to a regular prompt. Pressing ctrl+c seems to work, but as soon as I start typing a command, it's ...
0
votes
3answers
44 views

diff -r for windows?

To find differences in files between two directory structures I usually run diff -r dir1/ dir2/ I'm burdened with Windows - is there any way to do this easily Windows or should I just get Cygwin?
70
votes
20answers
58k views

How do I diff two spreadsheets?

We have a lot of spreadsheets (xls) in our subversion repository. These are usually edited with gnumeric or openoffice.org, and are mostly used to populate databases for unit testing with dbUnit. ...
7
votes
1answer
114 views

ignoring changes matching a string in git diff

I've made a single simple change to a large number of files that are version controlled in git and I'd like to be able to check that no other changes are slipping into this large commit. The changes ...
1
vote
1answer
51 views

vim executing diff command twice

I found a peculiar behavior with my vim: It executes every diff command twice and I'm not sure why. (I'm running this on Windows, I'm suspecting this has something to do with it.) As per the answer, ...
1
vote
2answers
118 views

BitBucket colored diff email service

Does anyone know about anyway to send out colored diffs of commits in bitbucket? I reckon you can do that by pushing out a HTTP call to your own server, but I need a solution in case you do not have ...
8
votes
2answers
713 views

How do you compare two files containing C code based on code structure, not merely textual differences?

I have two files containing C code which I wish to compare. I'm looking for a utility which will construct a syntax tree for each file, and compare the syntax trees, instead of merely comparing the ...
1
vote
5answers
141 views

Find functional changes between two revisions of a file (compile diff?)

I'm looking for a tool that checks whether two (C) source code files generate the same binary so that I can find actual functional changes between two files and ignore mere coding style changes. It ...
5
votes
6answers
516 views

syntax aware diff tools?

Are there any (ideally GUI) diff tools that are aware of syntax? As an example of the kind of thing I'm looking for, I keep finding that my current tool miss aligns repetitive code: Foo = { ...
3
votes
2answers
448 views

How to ignore coding convention/style while generating diff using svn?

How can we ignore coding convention while generating diff using svn? To elaborate, I do not want to distinguish between the following two coding styles while (variableIter.hasNext()) { lModel = ...
0
votes
0answers
78 views

Beyond Compare as a Diff tool with Git - How to command line switch like: /expandall

My git global config C:\Users\.gitconfig looks like: [diff] tool = bc3 [difftool "bc3"] path = C:/Program Files (x86)/Beyond Compare 3/BCompare.exe cmd = \"C:/Program Files (x86)/Beyond Compare ...
-1
votes
2answers
129 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 ...
3
votes
2answers
37 views

diff while ignoring patterns within a line, but not the entire line

I often have a need to compare two files, while ignoring certain changes within those files. I don't want to ignore entire lines, just a portion of them. The most common case of this is timestamps ...
2
votes
3answers
540 views

Diff tool for Mac without saving text to files [closed]

I use meld on Linux and I am able to compare two pieces of text without having to save them in files. Is there something similar for Mac and Windows?
0
votes
2answers
22 views

Is there any way to open a file using a diff without patching the original?

Example, I have a 40Mb file, and i want to make some minor changes to it, maybe 20Kb of changes. I can create a diff between the resulting file and the original, simply enough, either by writing it ...
0
votes
1answer
44 views

Tool to compare and merge files in different folders

I am developing two Java based projects that are very similar which means that what i do to the first one i can use diff to... command in Netbeans to apply the changes to the second one. However there ...
1
vote
1answer
31 views

Compare a GitHub gist with its forks

I found an interesting gist on GitHub, tried it out, and found a bug. I noticed that there are several forks of the gist, so I wondered if any of them have fixed the bug I found. I can see the list of ...
5
votes
3answers
1k views

Java MongoDB Object Versioning

I need to do versioning on (simple) Java object graphs stored in a document-oriented database (MongoDB). For relational databases and Hibernate, I discovered Envers and am very amazed about the ...
2
votes
1answer
85 views

Diffing Binary Files In Python

I've got two binary files. They look something like this, but the data is more random: File A: FF FF FF FF 00 00 00 00 FF FF 44 43 42 41 FF FF ... File B: 41 42 43 44 00 00 00 00 44 43 42 41 40 ...
6
votes
5answers
2k views

showing differences within a line in diff output

This StackOverflow answer has an image of KDiff3 highlighting intra-line differences. Does someone know of a tool which can show the same (ex, via color) on the command line? Another way to think of ...
59
votes
8answers
32k views

Highlight the difference between two strings in PHP

What is the easiest way to highlight the difference between two strings in PHP? I'm thinking along the lines of the Stack Overflow edit history page, where new text is in green and removed text is in ...
0
votes
2answers
39 views

Compare files with different encoding

Few months ago i was trying to move old php4 and iso8859-2 based system on php5 and utf8 encoding. Everything works good but now need to finally run this new version and the problem is that in the ...
2
votes
4answers
73 views

Bash: tell if a file is included in another

I'm trying to compare the content of two files and tell if the content of one is totally included in another (meaning if one file has three lines, A, B and C, can I find those three lines, in that ...
2
votes
3answers
499 views

How to create an identical gzip of the same file?

I have a file, its contents are identical. It is passed into gzip and only the compressed form is stored. I'd like to be able to generate the zip again, and only update my copy should they differ. As ...
0
votes
2answers
40 views

Can I commit one single SVN diff file instead of committing 10 individual files in one go?

I have a list of files that I work on in my source tree in SVN. I might change some other files for my local use and I do not want to commit them. Recently working late by mistake I committed some ...
4
votes
3answers
5k views

Show number of changed lines per author in git

i want to see the number of removed/added line, grouped by author for a given branch in git history. there is git shortlog -s which shows me the number of commits per author. is there anything similar ...
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 ...
42
votes
5answers
11k views

Can I make git recognize a UTF-16 file as text?

I'm tracking a Virtual PC virtual machine file (*.vmc) in git, and after making a change git identified the file as binary and wouldn't diff it for me. I discovered that the file was encoded in ...
0
votes
4answers
436 views

PHP Date difference

i've the following code: $dStart = new DateTime('2013-03-15'); $dEnd = new DateTime('2013-04-01'); $dDiff = $dStart->diff($dEnd); echo $dDiff->days; I don't know why i'm getting 6015 as ...
0
votes
0answers
45 views

BASH: comm (or similar) when compare multiple files

I've the following problem: I would like to compare the content of 8 files contaning a list like this Sample1.txt Sample2.txt Sample3.txt apple pineapple apple pineapple ...
1
vote
3answers
60 views

Regex to match equal diff lines

I have diffs that I postprocess and want to flatten out equal lines. Here is one example: Foo -Bar +Bar Baz I want to squash the lines down that are equal so they don't show up in the diff anymore. ...
5
votes
2answers
337 views

How do you know the differences in the interfaces between two different versions?

I'm working over some php library. I want to track the changes in the interfaces of classes library. Yes, i'm using GIT. But diff produces more information than i need. I was trying to compare two ...
2
votes
2answers
114 views

Do Google's Courgette works on Mac and Linux yet?

Last time i checked, the google diff Courgette only works on Windows 32 Bit Platform and it is yet available on Linux and OSX. Is that still the case? If yes what makes Courgette only works on ...
9
votes
7answers
2k views

svn diff for a complete file?

Given: an SVN repository, a bin directory inside it and a script.pl inside this bin. Some revisions ago, bin and script.pl has been added to the repository in one commit. Since then, some revisions ...
1
vote
3answers
36 views

vimdiff files given in a text file

I have a text file files.txt with following entries "/home/dilawar/a.txt","/home/dilawar/b.txt" "/home/dilawar/aa.txt","/home/dilawar/bb.txt" Now I wish to see the diff of files on line 1. I tried ...
39
votes
6answers
12k views

Diff Algorithm [closed]

I've been looking like crazy for an explanation of a diff algorithm that works and is efficient. The closest I got is this link to RFC 3284 (from several Eric Sink blog posts), which describes in ...
45
votes
3answers
16k views

use Winmerge inside of Git to file diff

Is there a way to use Winmerge inside of git to do Diffs?

1 2 3 4 5 38