4
votes
2answers
108 views
How to display word differences using c#?
I would like to show differences between two blocks of text. Rather than comparing lines of text or individual characters, I would like to just compare words separated by specified characters ('\n', …
5
votes
3answers
127 views
practical guide to subversion branch merging
Preface
I realise there are already a lot of questions about merging SVN branches on SO. I have read many of them, but still haven't really found the information I'm looking for, so please read this …
0
votes
2answers
20 views
deltified document revision control in PHP
If I have a PHP application which allows users to make changes to documents, what is the best way to implement revision tracking for each document? I want the storage of each revision to be deltified …
1
vote
3answers
60 views
How to apply git diff --binary patches without git installed?
I use to git diff to generate patches that can be applied to remote server to update a project.
Locally, I run:
git diff --no-prefix HEAD~1 HEAD > example.patch
Upload example.patch to remote …
2
votes
5answers
65 views
A visual patch tool for Linux
I've got a file and a patch for it. I'd like to visually apply the patch, t.i. see how the changes proposed by the patch look in context, make some corrections, and save the resulting file.
What tool …
0
votes
3answers
35 views
Sync (Diff) of the remote binary file
Hi!
Usually both files are availble for running some diff tool but I need to find the differences in 2 binary files when one of them resides in the server and another is in the mobile device. Then …
2
votes
2answers
50 views
Git how to find out which single commits that done on one branch and not another
I am about to create a patch file for a project. My branch is the "master" in my local repository. And the remote upstream branch is mapped to the local branch "origin". \
With this command I can …
0
votes
1answer
14 views
File diff in MSBuild?
How do I diff two files in MSBuild? I cannot find any specific task to do it.
If possible, is it also possible to exclude certain rows, or patterns in the files eg.
2009-12-09T10:03:07.6888125+02:00
3
votes
6answers
71 views
Are there any free Xml Diff/Merge tools available?
I have several config files in my .net applications which I would like to merge application settings elements etc.
I was about to begin doing it manually as I usually do, however thought there must …
0
votes
0answers
16 views
Outlook replacement for Thunderbird’s colordiff
So far I've been happily using thunderbird to browse through svn commit messages using the Colored Diffs plugin.
However now I have to use Outlook (don't ask...), and I could not find an equivalent …
0
votes
2answers
19 views
Inverting a diff or patch || CVS diff
In CVS, my working copy (WC) is on a certain branch (which we'll call "foo"). There have been other changes checked into foo by another dev. I want to do a diff between my WC and the upstream state …
0
votes
1answer
39 views
Can one force svn diff to show svn cp’d files?
Here is a command sequence showing distinct svn diff behaviours for adding versus copying files:
$ ls -A
foo .svn
$ svn cp foo foo.svn-cp
A foo.svn-cp
$ svn diff foo.svn-cp
<nothing>
$ …
1
vote
8answers
100 views
File differencing software on Windows?
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.
0
votes
1answer
23 views
Command Line XML Diff Utility for Solaris
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 …
0
votes
2answers
40 views
How to Merge multiple patch files?
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. …
