active questions tagged diff - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T04:42:31Z http://stackoverflow.com/feeds/tag/diff http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1745515/what-ide-lets-me-view-diffs-as-highlighting-on-my-code 2 What IDE lets me view diffs as highlighting on my code? talkaboutquality 2009-11-16T23:19:26Z 2009-12-07T15:41:47Z <p>EDIT: Primarily, talking about code written in C.</p> <p>Someone sends me a diff to review and I know I can take the "before" code, apply the diff (patch) to get proposed "after" code, and open both, pair of files by pair of files, in a difference viewer (e.g. WinMerge, <a href="http://en.wikipedia.org/wiki/Araxis%5FMerge" rel="nofollow">Araxis Merge</a>, etc.) to review the change.</p> <p>On the other hand, if I want to stay in my preferred code browser, with syntax highlighting and right-click definitions, then I don't have the diff anymore.</p> <p>For prose reviewers, MS-Word, which is like a prose writer's IDE, allows you to point a currently-open file at another version of that file, tell it "compare", and, instead of giving you two windows, it highlights the changes on the version you've got open.</p> <p>Anyone know of an IDE that does that for code?</p> <p>EDIT: In other words, an IDE with a <em>built-in</em> diff viewer? Or which allows plug-in of an existing great standalone one?</p> <p>(I bet I could hack an IDE-based code review add-in like Jupiter for Eclipse to do it; lying to it and pretending that the patch is a set of code review comments. But I don't want to lie. I want a source code editor that already think that "compare" is an IDE function.)</p> http://stackoverflow.com/questions/1830962/file-differencing-software-on-windows 1 File differencing software on Windows? larryq 2009-12-02T06:12:02Z 2009-12-04T23:32:15Z <p>Just wondering what's out there that everyone likes. I have to merge some changes among several developers (C#) and wanted to see what kind of alternatives to windiff are around. </p> http://stackoverflow.com/questions/65199/c-compare-algorithms 1 C# compare algorithms public static 2008-09-15T18:01:26Z 2009-12-04T20:42:50Z <p>Hi, Are there any open source algorithms in c# that solve the problem of creating a difference between two text files?</p> <p>It would be super cool if it had some way of highlighting what exact areas where changed in the text document also.</p> http://stackoverflow.com/questions/104203/anyone-know-of-any-good-database-diff-tools 7 Anyone know of any good Database Diff tools? Haoest 2008-09-19T18:14:36Z 2009-12-03T09:29:32Z <p>I can't find any good ones in sourceforge :( Anyone has any success with open source (or retail) database diff tool?</p> <p>EDIT: for sqlserver 2005</p> http://stackoverflow.com/questions/1835405/can-one-force-svn-diff-to-show-svn-cpd-files 0 Can one force svn diff to show svn cp'd files? sjbach 2009-12-02T20:00:42Z 2009-12-03T00:57:31Z <p>Here is a command sequence showing distinct svn diff behaviours for adding versus copying files:</p> <pre><code>$ ls -A foo .svn $ svn cp foo foo.svn-cp A foo.svn-cp $ svn diff foo.svn-cp &lt;nothing&gt; $ cp foo foo.cp-add $ svn add foo.cp-add A foo.cp-add $ svn diff foo.cp-add &lt;contents&gt; </code></pre> <p>Some notes to head off irrelevant answers:</p> <ul> <li>I understand the difference between these two svn actions</li> <li>I know that if I were to edit the copied foo.svn-cp pre-commit, the diff of that edit would show (vs the original foo)</li> <li>I agree with the distinct svn diff behaviours</li> </ul> <p>I am only wondering if I can override some default to force svn diff to output foo.svn-cp in the same manner it outputs foo.cp-add.</p> http://stackoverflow.com/questions/710845/how-does-one-extract-a-unified-diff-style-patch-subset 1 How does one extract a unified-diff style patch subset? Ross Rogers 2009-04-02T17:49:06Z 2009-12-02T20:48:26Z <p>Every time I want to take a subset of a patch, I'm forced to write a script to only extract the indices that I want. </p> <p>e.g. I have a patch that applies to sub directories 'yay' and 'foo'.</p> <p>Is there a way to create a new patch or apply only a subset of a patch? i.e. create a new patch from the existing patch that only takes all indices that are under sub directory 'yay'. Or all indices that are not under sub directory 'foo'</p> <p>If I have a patch like ( excuse the below pseudo-patch):</p> <pre><code>Index : foo/bar yada yada - asdf + jkl yada yada Index : foo/bah blah blah - 28 + 29 blah blah blah Index : yay/team go huskies - happy happy + joy joy cougars suck </code></pre> <p>How can I extract or apply only the 'yay' subdirectory like:</p> <pre><code>Index : yay/team go huskies - happy happy + joy joy cougars suck </code></pre> <p>I know if I script up a solution I'll be re-inventing the wheel...</p> http://stackoverflow.com/questions/1800634/diff-tool-that-can-compare-sub-sections-of-files 1 Diff tool that can compare sub-sections of files EvilPuppetMaster 2009-11-25T23:20:52Z 2009-12-01T14:07:50Z <p>I'm looking for a diff tool that will allow me to compare just a sub-section of a file with a section of another file, or even of itself. Preferably eclipse based but will take all suggestions.</p> <p>Yes I know I can copy out the two sections into different files and compare those, but that is very tedious when you are trying to do a large amount of refactoring.</p> <p>Basically I'm trying to remove as much duplicated code as possible from a code base that is suffering from a great deal of ctrl-V 'inheritance' ;-) However the pasted parts have evolved apart a little over time.</p> http://stackoverflow.com/questions/1821953/command-line-xml-diff-utility-for-solaris 0 Command Line XML Diff Utility for Solaris daveg 2009-11-30T19:41:27Z 2009-12-01T08:08:05Z <p>Can anyone suggest a command line xml differencing tool for Solaris? I want to call one in a regression test script, so it's important that the tool can be called from the command line and return a status to indicate whether the files contain any differences.</p> <p>The tool must have an option to ignore attribute order.</p> <p>Thanks, Dave</p> http://stackoverflow.com/questions/1818965/how-to-merge-multiple-patch-files 0 How to Merge multiple patch files? amit.dev 2009-11-30T10:18:56Z 2009-11-30T10:54:49Z <p>We use subversion and during every check-in, a script creates a patch file with all the diff. Now for the same issue/defect there could be multiple check-ins and we end up with multiple patch files. Now to see consolidated changes for an issue all the patch files have to be merged. Is there a way to do that?</p> <p>Or another way to solve the same problem is: Is there a way in subversion to get the combined diff of all changes done as part of a particular comment? Eg:</p> <p>Checked in with comment: "123: first changes"<br> Checked in with comment: "123: second set of changes"<br> Checked in with comment: "123: third changes"..</p> <p>Is there a way to get a combined diff of all change that happened whose comment has prefix 123?</p> http://stackoverflow.com/questions/244639/git-thinks-i-am-rewriting-one-of-my-files-everytime-i-make-a-small-change 2 Git thinks I am rewriting one of my files everytime I make a small change Paul Wicks 2008-10-28T20:01:18Z 2009-11-29T07:28:52Z <p>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 the change in this commit only changed a single line.</p> <p>git-diff ouputs this:</p> <pre><code>--- a/src/BuildTable.java +++ b/src/BuildTable.java @@ -1 +1 @@ -import java.io.FileNotFoundException;^Mimport java.io.FileReader;^Mimport java.io.InputStreamReader;^Mimport java.io.PushbackReader;^Mimport java.util.ArrayList;^Mimport \ No newline at end of file +import java.io.FileNotFoundException;^Mimport java.io.FileReader;^Mimport java.io.InputStreamReader;^Mimport java.io.PushbackReader;^Mimport java.util.ArrayList;^Mimport \ No newline at end of file </code></pre> <p>After doing a git-commit -a</p> <pre><code>Created commit fe43985: better error notifications 3 files changed, 54 insertions(+), 50 deletions(-) rewrite src/BuildTable.java (78%) </code></pre> <p>Is Git seeing this file as binary or something? Is this a problem? If it is, how do I fix this?</p> http://stackoverflow.com/questions/1797284/eclipse-diff-for-large-file-shows-incorrect-differences 0 Eclipse diff for large file shows incorrect differences Nayn 2009-11-25T14:33:37Z 2009-11-25T14:33:37Z <p>Hi, I am not sure if anybody has experienced this. I am working with a very large file having 7000 lines of code. I made a lot of changes and when i compared the file with the repository version, it showed me incorrect differences.</p> <p>I guess the diff algorithm buffers only limited number of lines ahead/behind for searching the current line, and on failing to find that, it simply shows diff with current line in new file.</p> <p>One such snapshot > <a href="http://picasaweb.google.com/lh/photo/ENwZ4gqXxiCF3SWqVnVAqA?feat=directlink" rel="nofollow">http://picasaweb.google.com/lh/photo/ENwZ4gqXxiCF3SWqVnVAqA?feat=directlink</a></p> <p>If anybody knows any workaround, please let me know. Thanks</p> http://stackoverflow.com/questions/1793294/using-cvs-to-ifdef-my-changes 0 Using CVS to #ifdef my changes JoeBieg 2009-11-24T22:12:55Z 2009-11-25T02:48:23Z <p>I have a large project that has many changes not yet checked in. I want to check them in but have them only take effect when a certain symbol is #define'd</p> <p>CVS does have the ability to format diffs with #ifdef's inserted using the --ifdef argument. However, this does not merge the #ifdef's back into my working file. Even worse, the output includes some ugly header stuff that would need to be removed.</p> <pre><code>Index: path/to/my/file.h,v =================================================================== RCS file: /path/to/my/file.h,v retrieving revision 1.17 diff --ifdef=TEST -r1.17 file.h </code></pre> <p>Does anyone have a script that would automate the process of doing the CVS diff, removing the header stuff and copying the result back over the working file?</p> <p>Great thanks if anyone can help.</p> http://stackoverflow.com/questions/1793253/minimal-binary-diff-for-similar-1000-byte-blocks-with-static-noise 0 Minimal binary diff for similar 1000 byte blocks with static noise? unknown (google) 2009-11-24T22:03:37Z 2009-11-25T00:36:21Z <p>I need a minimal diff for similar 1000 byte blocks. These blocks will have at most 20% of the bits different. The flipped bits will be like radio static -- randomly flipped bits with a uniform distribution over the whole block. Here's my pseudo code using XOR and lzo compression:</p> <pre><code>minimal_diff=lzo(XOR(block1,block2)) </code></pre> <p>Since the blocks are small, I'm using lzo's compression with the hope that this compression format has minimal boilerplate.</p> <p>I have reviewed algorithms such as xdelta and bsdiff, but these will not work for random static noise like this. These are more oriented around finding shifted sequences of bytes.</p> <p>Can error correcting codes work here for creating a minimal diff? How exactly?</p> <p>Exact algorithms would be nice. If it's just a research paper theory and not implemented then I'm not interested.</p> <p>NOTE: The similar bits in each block line up. There is no shifting. There is just some random noise bit flips that differentiate the blocks.</p> http://stackoverflow.com/questions/1791854/diffing-between-two-entire-directories-projects 0 Diffing between two entire directories/projects? meder 2009-11-24T18:03:31Z 2009-11-24T19:47:27Z <p>I inherited a project originally stored in CVS with all the revisions. I made quite a few edits, and I'm trying to compare all the changes I made in the original directory, in regards to new files added versus the old ones.</p> <p>Is there some sort of utility for hg/git where I can do a tree diff, or something of that nature? So that say, there's a mark between newly added files, deleted files, am I asking for too much?</p> http://stackoverflow.com/questions/1781550/tortoisediff-to-diff-source-code-but-it-seems-to-have-become-an-image-diffing-to 0 TortoiseDiff to diff source code but it seems to have become an image diff'ing tool? Jian Lin 2009-11-23T07:16:08Z 2009-11-23T11:27:54Z <p>I just downloaded and installed the newest Tortoise 64 bit on Win 7, and then start up TortoiseDiff from </p> <pre><code>START -&gt; All Programs -&gt; TortoiseSVN -&gt; TortoiseDiff </code></pre> <p>It used to be able to diff two source code file, but now it seems like it is an image diff'ing tool. Anybody knows how to get the tool to diff source code files?</p> <p><strong>Update:</strong></p> <p>If the two source files are in different folder, seems like the TortoiseSVN context menu by right click won't show the "Diff" option. After copying the other file to the same folder, if both files are highlighted, then there is a "Diff" option, and TortoiseMerge is the program that comes out to diff the file. So how to use TortoiseDiff from the START menu to diff 2 files? It seems like it is for merging file if it is invoked from the START menu.</p> http://stackoverflow.com/questions/454808/standard-diff-format-in-svn 1 Standard diff format in SVN LK 2009-01-18T08:20:25Z 2009-11-22T19:56:36Z <p>Does standard/normal diff format exist in svn or only unified format?</p> http://stackoverflow.com/questions/1773300/diff-tool-that-ignores-newlines 1 Diff Tool That Ignores Newlines Prometheus 2009-11-20T21:19:15Z 2009-11-20T21:58:03Z <p>I frequently need to compare SQL procedures to determine what has changed in the newest version. The problem is, everyone has their own style of formatting, and SQL doesn't (usually) care about where one puts their newlines (e.g. where clauses all on one line vs. newline before each AND).</p> <p>This makes it very difficult (especially for long procedures) to see the actual differences. I cannot seem to find a free diff/merge utility that will allow me to ignore newlines (i.e. treat as whitespace). So far I've tried WinMerge and Beyond Compare without any luck. Does anyone know of a diff tool (ideally free) that would see these two examples as identical?</p> <p>Ex. 1:</p> <pre><code>the quick brown </code></pre> <p>Ex. 2:</p> <pre><code>the quick brown </code></pre> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1771351/xml-diff-how-to-generate-xml-diff-using-xslt 6 XML Diff: How to generate XML diff using XSLT? Vincent 2009-11-20T15:44:53Z 2009-11-20T16:10:54Z <p>I would like to compute the diff between two XML files or nodes using XSL/XSLT. Is there any stylesheet readily available or any simple way of doing it?</p> http://stackoverflow.com/questions/1761067/javascript-textarea-monitoring-ruby-delta-calculation 0 Javascript Textarea Monitoring / Ruby Delta Calculation chrisrhoden 2009-11-19T05:25:14Z 2009-11-19T12:45:29Z <p>I am working on a system which needs to keep constant (and I mean <em>constant</em>) track of browser side changes to a textarea via AJAX requests to the server. Ideally, every character would be stored as a row in the database, along with the position it was inserted and a timestamp.</p> <p>I am hoping that there is either a good Javascript library that I have somehow missed which will make it trivial to do this all in the browser, but I think that inconsistencies in the DOM prevents one from doing so in any way which will be resource-reasonable. I'm a jQuery user, if that makes a difference.</p> <p>The documents being created can get very large, so it is inefficient to send the entire document back and perform a diff on the server, but I think that I can work out a way to only send back the lines which are affected by an edit. Unfortunately, I do need a way to get per-character as opposed to per-line diffs calculated once it reaches the server.</p> <p>I would like to use Ruby, so if there is a Ruby library that can do that, awesome. If not, is there a generic algorithm to calculating actual deltas between two strings that someone can suggest?</p> <p>Summary:<br> Javascript Library for very tightly monitored textarea OR<br> Ruby library for calculating deltas OR<br> Generic delta calculation algorithm</p> <p>In that order. Thank you in advance.</p> http://stackoverflow.com/questions/1195695/cvs-diff-from-inside-vs2008 0 CVS diff from inside VS2008 snoswal 2009-07-28T17:58:35Z 2009-11-19T10:05:36Z <p>Creating an Addin to use your favorite diff tool for doing a diff between the current active document and the last checked in version seems to be one way to go. Is there an option in VS2008 that I might configure to do this for me ? </p> http://stackoverflow.com/questions/774316/python-difflib-highlighting-differences-inline 1 Python difflib: highlighting differences inline? AnC 2009-04-21T19:57:32Z 2009-11-18T20:52:52Z <p>When comparing similar lines, I want to highlight the differences on the same line:</p> <pre><code>a) lorem ipsum dolor sit amet b) lorem foo ipsum dolor amet lorem &lt;ins&gt;foo&lt;/ins&gt; ipsum dolor &lt;del&gt;sit&lt;/del&gt; amet </code></pre> <p>While difflib.HtmlDiff appears to do this sort of inline highlighting, it produces very verbose markup.</p> <p>Unfortunately, I have not been able to find another class/method which does not operate on a line-by-line basis.</p> <p>Am I missing anything? Any pointers would be appreciated!</p> http://stackoverflow.com/questions/1737306/how-to-diff-files-directly-from-the-linux-kernel-git-repository 1 How to Diff Files Directly from the Linux Kernel GIT Repository? Robert S. Barnes 2009-11-15T11:34:46Z 2009-11-16T23:25:57Z <p>I'd like to be able to diff files / directories directly from the Linux Kernel GIT repository without having to download full source.</p> <p>Specifically, I'm interested in two potential solutions:</p> <ol> <li>The ability to do diff's via a web browser ( firefox )</li> <li>A GUI utility for Ubuntu that can do remote diffs.</li> <li>A tutorial how to setup option #2</li> </ol> <p><strong>Edit</strong></p> <p>As an example of what I'm looking for, I used to use <a href="http://www.lincvs.com/index.php" rel="nofollow">CrossVC</a> for the above tasks on a CVS repo.</p> http://stackoverflow.com/questions/1741705/how-to-make-svn-diff-show-only-non-whitespace-line-changes-between-two-revisions 0 how to make svn diff show only non-whitespace line changes between two revisions m.u.sheikh 2009-11-16T11:49:07Z 2009-11-16T12:03:36Z <p>I can get diffs between two revisions using something like </p> <pre><code>svn diff -r 100:200 &gt; file.diff </code></pre> <p>But the problem is that there are many lines that show up due to change in whitespace. Is there a way to only write those lines that actually change in a significant way and not just in whitespace?</p> http://stackoverflow.com/questions/1736348/python-binary-diff 0 Python binary diff sharvey 2009-11-15T02:20:37Z 2009-11-15T04:46:45Z <p>I'm trying to use bsdiff (or any binary diff implementation you come up with) to compute and apply diff onto random binary data. I would like to use it on data from a database, so it would be better not to have to write those onto disk and pass them to bsdiff.exe.</p> <p>Is there any wrapper library or way in python to do that?</p> http://stackoverflow.com/questions/460198/best-free-3-way-merge-tool-for-windows 4 Best free 3-Way Merge Tool for Windows. orj 2009-01-20T05:26:41Z 2009-11-13T22:35:14Z <p>I'm looking for a good <em>free</em> 3-way Merge/Diff tool for Windows.</p> <p>I know of <a href="http://kdiff3.sourceforge.net/" rel="nofollow">KDiff3</a>. But I was looking for further recommendations.</p> http://stackoverflow.com/questions/1730748/diff-merge-tool-for-tortoisesvn-within-visual-studio 1 diff/merge tool for TortoiseSVN within Visual Studio Django Reinhardt 2009-11-13T17:29:15Z 2009-11-13T18:09:13Z <p>Hi. We've recently "upgraded" from <strong>Visual SourceSafe</strong> to SVN based on recommendations on this site. Our current source control set-up is: <strong>TortoiseSVN</strong> with VisualSVN. We're very happy with it so far, but I was wondering if there's any additional benefits from using a different diff/merge tool than the one included (TortoiseMerge).</p> <p>TortoiseMerge seems pretty capable, but also quite a bit slower than VSS's "View History" tool.</p> <p>This excellent thread shows a lot of different things: <a href="http://stackoverflow.com/questions/940464/what-tools-do-you-guys-use-when-integrating-with-subversion-on-windows">http://stackoverflow.com/questions/940464/what-tools-do-you-guys-use-when-integrating-with-subversion-on-windows</a></p> <p><strong>WinMerge</strong> and <strong>BeyondCompare</strong> are both mentioned in that thread, but we're mainly interested in <em>diffs</em>.</p> <p>Are there any good reasons to change up from <strong>TortoiseMerge</strong>, even for the purpose of quicker <em>diffs</em>?</p> <p>Thanks.</p> http://stackoverflow.com/questions/19963/whats-the-best-way-of-diffing-crystal-reports 3 What's the best way of diffing Crystal Reports? ninesided 2008-08-21T13:56:06Z 2009-11-13T12:59:24Z <p>If you have two versions of the same report (.rpt) and you want to establish what the exact differences are, what is the best way to go about this? I've seen some commercial tools to do this, but I'm not too interested in forking out cash for something that should be relatively straight forward. Can I hook into the Crystal API and simply list all of the properties of every field or something? Please someone tell me that there's an Open Source project somewhere that does this... @:-)</p> <p>@Kogus, wouldn't diffing the outputs as text hide any formatting differences?</p> <p>@ladoucep, I don't seem to be able to export the report <em>without</em> data.</p> http://stackoverflow.com/questions/778291/how-do-i-diff-utf-16-files-with-gnu-diff 4 How do I diff utf-16 files with GNU diff? skiphoppy 2009-04-22T17:15:41Z 2009-11-13T11:32:04Z <p>GNU diff doesn't seem to be smart enough to detect and handle UTF-16 files, which surprises me. Am I missing an obvious command-line option? Is there a good alternative?</p> http://stackoverflow.com/questions/1727806/how-do-i-get-each-comp-result 0 How do I get each comp result ? tknv 2009-11-13T08:05:22Z 2009-11-13T09:25:33Z <p>I would like to check diffs and when files are not same,stop compare files.<br> Compare any files C:/UML/reports/* and C:/UML/Test/*.<br> In this two directory has same file names and also aim is to want to compare same file by name.<br> I try to that by below code in .bat file. </p> <h3>diff.bat</h3> <pre><code>@echo off for %%i in (C:\UML\reports\*) do comp %%i C:\UML\Test\%%~nx%i if %errorlevel% == 0 (echo OK) else (echo NG &amp; PAUSE) </code></pre> <p>I know that if~ section place was not collect.<br> But I do not have any solution now for that. </p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1724871/how-to-get-the-diff-between-a-tag-and-its-base-in-git 0 How to get the diff between a tag and its base in Git? Priyank Bolia 2009-11-12T19:45:40Z 2009-11-12T20:17:36Z <p>I need to generate a patch of commit with respect to its base. A tag has been marked on that commit. So like on 939023 I do a commit and now it becomes 213232, I will tag 213232 with a label. Now given the label, I need to find out the diff between the 213232 and 939023.</p> <p>I mean I need a way to generate a diff of any commit whose label is given to its base.</p> <p>Any ideas?</p>