Changes between Version 1 and Version 2 of WinMerge


Ignore:
Timestamp:
05/30/07 16:26:17 (17 years ago)
Author:
csherwood
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WinMerge

    v1 v2  
    22A really handy '''diff''' tool.
    33Grab it from http://winmerge.org/
     4
     5For Winmerge, add these commands to  Linefilters:
     6{{{
     7^\Wsvn \WId: .*\$
     8^\W svn \WId: .*\$
     9^\W\W svn \WId: .*\$
     10^\W\Wsvn \WId: .*\$
     11^\W\Wsvn .*\$
     12}}}
     13Add this file as a filter file in
     14{{{c:\Program Files\Winmerge\Filters\subversion.flt}}}
     15{{{
     16## This is a directory/file filter for WinMerge
     17## This filter suppresses various files found in subversion
     18name: subversion
     19
     20## This is an inclusive (loose) filter
     21## (it lets through everything not specified)
     22def: include
     23
     24## Filters for filenames begin with f:
     25## Filters for directories begin with d:
     26## (Inline comments begin with " ##" and extend to the end of the line)
     27
     28f: \.svn$
     29f: \text-base$
     30
     31d: \\\Wsvn$
     32d: \\text-base$
     33d: \\.svn$
     34d: \\tmp$
     35}}}
     36