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

learn more… | top users | synonyms

2
votes
2answers
19 views

IntelliJ reorder changes tab by filepath

IntelliJ IDEA 12.x orders the diff in the "Changes" tab by filename only, how do you order by the file path? IE: src/main/a/SomeFile.java src/main/b/AnotherFile.java Versus the current order ...
0
votes
1answer
10 views

bash vs sh cannot use unamed stream diff <(doSomething) <(doSomethingElse)

I want to compare two stream. I wrote the following code in bash: #!/bin/bash diff <({ #premier commentaire cat test_similar1 }) <({ #second commentaire cat test_similar2 }) It worked. ...
0
votes
0answers
12 views

Diff shows all ↵ changed to ↓

In my AIR (HTML/JS) project, I noticed that ./_notes/air_settings.mno was out of date from my SVN repo: Running TortoiseMerge (SVN diff) shows all ↵ changed to ↓: I have a few questions: I ...
1
vote
1answer
32 views

What are the arguments that git diff uses for diff command?

When you invoke git diff, it's using the diff utility to compare files, however, not in the default way. It's using a number of extra options, some I can name are: Different markers before lines: ...
1
vote
1answer
64 views

Implementing Google's DiffMatchPatch API for Python 2/3

I want to write a simple diff application in Python using Google's Diff Match Patch APIs. I'm quite new to Python, so I want an example of how to use the Diff Match Patch API for semantically ...
1
vote
2answers
71 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
44 views

Keep Xcode targets up to date

I have an Xcode project with two targets, one for my release version and one for beta testing. The only intentional differences between the two targets are Bundle name and Id, so that beta testers can ...
0
votes
1answer
62 views

Annotated diff file with “<<<<<<< mine” and “>>>>>>> yours” type markers

I am trying to create a diff file using the Linux diff command that has markers like this (taken from diff3 man page): <<<<<<< mine lines from mine ...
0
votes
1answer
59 views

script for finding difference between subfolders of two folders in unix

I have two folders named 'check' in two places. Both will have same folders but the files of each folder may differs. I want to run a script to find the difference between the folders with same name ...
0
votes
1answer
31 views

With Git, how do I apply the difference of two versions on branch A to branch B?

We have third party software that changes about 3 or 4 times per year. The vendor's code obviously doesn't take our customizations into account and when their latest code (a single Pro*C file) is ...
2
votes
2answers
46 views

Does increasing the number of unified diff context lines have any downsides?

By default, diff -u and git diff produce unified diffs with context lines. Apart from the size of the diff file itself, is there any disadvantage to increasing the number of context lines? I assume ...
1
vote
1answer
32 views

diff script error

when i execute below command it works properly (it provide difference between to text files) diff <(sed -n '/eTopUp MU(55) Gateway Status1:/,/eTopUp MU(60) Gateway Status:/p' ...
0
votes
2answers
49 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 ...
2
votes
1answer
92 views

Any editor/IDE that supports or could be hacked to support viewing diffs live while editing?

Is there any editor/IDE that provides a live view of differences (probably using diff) while I am editing a file. The ideal setting would be when I open a file for editing in such a diff-mode, the ...
0
votes
0answers
9 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? ...
0
votes
0answers
37 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 ' ...
0
votes
2answers
193 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 ...
0
votes
3answers
42 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?
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, ...
7
votes
1answer
112 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 ...
0
votes
0answers
66 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 ...
7
votes
3answers
251 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 ...
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 ...
1
vote
3answers
453 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?
1
vote
1answer
28 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 ...
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
3answers
42 views

diff with ignore matching lines doesn't work as expected

file1.txt ################################################### Dump stat Title information for 'ssummary' view ################################################### Tab=> 'Instance' Title=> {text ...
2
votes
1answer
79 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 ...
0
votes
2answers
37 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
72 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 ...
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 ...
0
votes
4answers
359 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 ...
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. ...
0
votes
0answers
43 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
35 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 ...
0
votes
3answers
56 views

diff directories a and b. show only files in b, not in a

the title sumarises my question. given directories a and b, i want to be able to generate a list of files that are in b but not in a. a normal diff does this, but it also shows files in a not in b: ...
0
votes
1answer
52 views

Get the difference of two sql files

I want to get the difference of two sql dumps. I have to save the difference in a new file. The difference should be legitimate query! For example, If I have a file with following content, CREATE ...
0
votes
1answer
27 views

Is there a PC-based program like Quick Diff?

Quick Diff is great because - as the author says - rather than "having to create two files ... just paste in fragments of code to perform a diff". However, it's an online tool, and sometimes I'd ...
0
votes
1answer
51 views

Make output of diff-lcs human readable

I'm using the diff-lcs gem to output a difference between two bodies of html content. Here's the sample content. Version one: <p>Paragraph one. Sentence one.</p> <p>Paragraph two. ...
0
votes
1answer
40 views

Diffing remote branches with msysgit

I'm trying to get my team to use git and since most of them want a GUI then I've gone down the msysgit path. I have a nice set of instructions written up for most daily tasks but I'm stumped on how ...
2
votes
1answer
109 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 ...
3
votes
1answer
107 views

Diff() between two collections in MongoDB

I have done research. I apologize if this is a duplicate question, but the solutions in other questions were not really my fit, and thus, I made a new question. What is the best way with Javascript ...
1
vote
0answers
79 views

Calculating the difference in percentage of two HTML files

I'm writing a tool in php which compares HTML files and shows the differences. Now I'm looking for an efficient way to calculate the difference in percentage between two HTML files. These files can be ...
1
vote
1answer
46 views

Is there an established representation for the difference between two JSONs?

Are there any established or existing formats or conventions for representing the diff between two JSON documents? Lets say that two remote nodes (or a server/client) both have some data represented ...
5
votes
1answer
82 views

Can ediff merge simultaneously show the ancestor, A, B, and merge buffers?

I'm a die-hard emacs user, but so far have always used kdiff3 for 3-way merges with ancestor, e.g. when performing git merge or rebase. I really like the way that kdiff3 can not only simultaneously ...
0
votes
0answers
44 views

MATlab: Taking the derivative of a function then trying to put it into fplot

I try to run this code in MATlab: syms x t dTdx= @(x,t) diff(T(x, t), x) + diff(theta_xt_6term(x, t), x) dx_geneq_6t= @(x,t) -k*(dTdx(x,t)) dx_geneq_6t_l = @(t) dx_geneq_6t (l,t); ...
1
vote
4answers
167 views

T-SQL Find missing values on the same column of two tables

Suppose you have two tables in a SQL Server database with the same schema for both tables. I want to compare a single column on both tables and find the values that are missing in table1 but are in ...
5
votes
2answers
336 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 ...
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
3answers
66 views

List differences in two files using awk

Say if I have two files - file1: 1|abc 2|cde 3|pkr file2: 1|abc 2|cde 4|lkg How can I list differences in both files using awk? If the second file is a subset of first file, I can do the ...

1 2 3 4 5 37