29
Apr
I just upgraded to WinMerge 2.2.2.0 and I can’t be happier.
WinMerge is a GUI for comparing and merging files. The new merge mode is very handy (F9) and it even highlights what’s changed within a region (F4). It can also compare between whole directories. Get it!
http://winmerge.sourceforge.net/
For those of you that work mostly in the command line (I do), you can put these two lines into wdiff.bat and put it in a directory in your path (I store all my small programs in “C:\Program Files\Misc”):
@echo off
start "" "C:\Program Files\WinMerge\WinMerge.exe" %*
Then you can invoke WinMerge just like diff. Note that %* means “all arguments passed to this batch file”.