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?
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
2answers
2k views

Modern version of WinDiff?

VB6 came with WinDiff. Is there a free modern version of WinDiff available that is able to ignore case?
0
votes
1answer
453 views

How to compare two text files against each other [closed]

For example I have two text files I would like to compare against each other (line by line) and then output the additions / differences: File1.txt abc123 abc123 bbbccc File2.txt abc123 abc123 ...
0
votes
1answer
116 views

Can I run Emacs M-x ediff on Windows without installing Cygwin?

Is it necessary to install Cygwin (which includes diff) or MinGW (which presumably also does) for something as simple as determining the differences between foobar.txt and foobar.txt~?
0
votes
2answers
88 views

A file save via notepadd++ is failing diff comparison on terminal

I saved a text file both in UTF-8 and ASCII using notepad++ on windows. The text, which had the same letter representation as the UNIX version, were claimed to be completely different by diff (e.g. ...
0
votes
2answers
296 views

Compare two txt files and print the difference line by line in txt file

I have two tab-delimited .txt files, and I want to compare them to each other. The end goal is to print the difference in a another .txt file, which will have only the lines where the different data ...
1
vote
4answers
115 views

Diff which folders are missing

I have two folders each which contain a lot of subfolders. Most of the files and folders should be the same, but I want to be able to figure out which folders are missing. For example: Folder1/ ...
2
votes
2answers
197 views

Git diffing crashes on Windows when submodules exist

Using msysgit on windows, whenever I do git diff on a repository that has a submodule or several, the command prompt (and also PowerShell) crash. Is this a known but and is there a fix/workaround? ...
24
votes
6answers
5k views

Why does git diff on Windows warn that the “terminal is not fully functional”?

I'm using msysgit 1.7.7.1 on Windows. I get an error when using git diff. What is causing this? Is there no diff tool included in msysgit? What should I do? WARNING: terminal is not fully ...
3
votes
1answer
352 views

How to diff Windows permissions

I have a small issue with Windows permissions (or rather, I'm trying to troubleshoot an issue which I think has to do with Windows permissions) and would like to compare and contrast permissions on ...
1
vote
1answer
198 views

Windows command to print only common lines in two or more files

Something like comm but for Windows (No, installing Cygwin just for this is not a good idea.) It will be great if it will allow compare more than 2 files at once. Example for 2 files: File1: foo1 ...
1
vote
2answers
137 views

Updating Installed Program Version when using binary patch?

So i'm looking into the idea of using something like bsdiff to create very small and automatic patches. One limitation i notices is it won't update the installed version number that is show in ...
3
votes
2answers
718 views

How did Dropbox implement these two features (changing icons & sending only difference in file changes.)

How did DropBox implement these two features (a high-level answer is fine): Get the icon of a file to change once it's synchronised on Windows? (I am guessing similar answers would apply to the ...
11
votes
5answers
10k views

What is the Windows equivalent of the diff command?

I know that there is a post similar to this : here. I tried using the comp command like it mentioned, but if I have two files, one with data like "abcd" and the other with data "abcde", it just says ...
3
votes
3answers
2k views

Git file permissions on Windows 7

I've read through a few questions regarding file permissions in git and I'm still a bit confused. I've got a repo on github forked from another. Post merge, they should be identical. However: $ git ...
1
vote
1answer
743 views

What's a good GUI utility to apply patches on Windows?

I'm looking for a good GUI patch utility for Windows - this is something that I'll be sending to someone who hasn't worked with patches much before, so ease of use is important. I know WinMerge can ...
7
votes
1answer
474 views

DUnit Compare Two Text Files and show Diff

Is there a way to compare two text files and show the diff if they are not identical in dunit? The easy start is to read them to TStringList, however the code for comparing two text file is much more ...
1
vote
2answers
531 views

diff3-like program for windows?

I'm a linux user, and normally I use kdiff3 to compare 3 (text) files between each others (for example, when there are svn conflics). I know of various programs to do that (like diff3 or meld) but ...
5
votes
3answers
237 views

Diff applications going crazy if the functions in the file were reordered

I've been busy refactoring a file in our project and as part of my changes I reordered the function to a more logical way. However, now when I'm trying to review my changes I get a mess: The diff ...
3
votes
3answers
2k views

Get line numbers of differences in two files when performing a diff on two files in Windows

For the purposes of code review, after an existing source file is modified, we only review lines of code that have been changed in those source files. After I make changes to source files in a ...
1
vote
2answers
931 views

Clearcase snapshot view path's not resolving when comparing

We use Clearcase at my work and I have several snapshot views setup (on Windows XP). The views themselves seem to work great, however whenever I try to compare any versions of any elements from my ...
1
vote
2answers
582 views

Diff tool which can ignore comments/exclude revisions?

I'm looking for an SVN diff tool which can ignore comments as changes, as well as exclude specific revision diffs for easier file comparison. For example, see below. Version 1. This is a sentence ...
0
votes
4answers
1k views

How to apply diff made by windows SVN on linux?

On windows i created a multi-file diff with: svn diff > mydiff.diff Then moved it to linux machine (with the same version of the same repo, no changes). How cai i apply it? After executing ...
17
votes
3answers
1k views

Getting readable diff displays in Mercurial on Unicode files (MS Windows)

I'm trying to store some Windows PowerShell scripts in a Mercurial repository. It seems the PowerShell editor likes to save files as UTF-16 Unicode. This means that there are lots of \0 bytes, which ...
3
votes
1answer
283 views

How to update application files using patching?

I am not interested in any auto update solution, such as ClickOnce or the MS Updater Block. For anyone feeling the urge to ask why not: I am already using these and there is nothing wrong with them, I ...
1
vote
1answer
357 views

How to use TortoiseMerge with Visual SourceSafe 2005?

I tried by setting up a custom editor for "File Difference" in Tools->Options->Custom Editors with the command line: "tortoiseproc /command:diff /path:%1 /path2:%2". TortoiseMerge launches but it ...
2
votes
6answers
1k views

How to use patches created in windows (with CRLF) in linux?I

Standard linux patch hard-coded only for unix text files. PS: I do no want convert ALL to unix and then convert result back.
4
votes
10answers
819 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
87 views

How do I get each comp result?

I would like to check diffs and when files are not same,stop compare files. Compare any files C:/UML/reports/* and C:/UML/Test/*. In this two directory has same file names and also aim is to want to ...
2
votes
10answers
298 views

What is the best inline file comparer for Windows?

My Source Safe file comparer (diff) doesn't say where in the line there are differences. Which tool would I use for that? And before someone tries to move it to SU, please note that we developers ...
3
votes
5answers
2k views

Diff tool that allows saving the compare markup

Is there a diff tool that allows saving of the compare markup? To clarify, I would like to save the actual comparison of the two files that shows the differences to send to someone for review. ...
1
vote
4answers
1k views

Comparing large xml files

could anyone assist me with this. I need to compare two beefy xml files 40mb each (ok not that beefy), but notepad++ croaks on this. Can anyone suggest something that will help (windows only). I read ...
2
votes
2answers
2k views

Image diff viewer SVN

We use Tortoise SVN for accessing our SVN server. I was wondering if anyone knew of a image diff viewer that would show two revisions of the image side by side to see any any changes. Similar to the ...
2
votes
7answers
819 views

In Windows, what's the most efficient way to compare two files and return just the records missing in the second file that were originally present in the first file?

At regular intervals we are receiving CSV files from an external source that we have little control over. These files are complete sets of current records; however, any records that have been deleted ...
9
votes
8answers
8k views

How to set Araxis as diff / merge tool for MSYS git?

I'm trying to use Araxis Merge as my diff / merge tool for MSYSGit. I found a few resources on the net: On the Araxis site, they mention an "easy" way, but it implies a executables ...
65
votes
11answers
46k views

Binary diff tool for very large files?

I need a utility to diff two binary files. The files are large (6-50 GB). Note: It needs to be specifically pointed out here: most diff programs work by mapping the file into their virtual address ...
60
votes
13answers
33k views

How do I apply a diff patch on Windows?

There are plenty of programs out there that can create a diff patch, but I'm having a heck of a time trying to apply one. I'm trying to distribute a patch, and I got a question from a user about how ...
4
votes
8answers
1k views

tools for diffing windows binaries?

Our QA team wants to focus their testing based on what EXEs and DLLs have actually changed between builds. We have a nice svn change report, but the relationship between source and changed binaries ...