SVN Filter for WinMerge

To remove svn folders from win merge comparisions, create a new file with the code below (SVN.flt). In WinMerge, Tools/Filters, Install and browse to the new file.

(Thanks to DrByte in the following post on zen-cart.com)
=======

## This is a directory/file filter for WinMerge
## This filter suppresses various binaries found in SVN source trees
name: SVN loose

## This is an inclusive (loose) filter
## (it lets through everything not specified)
def: include

## Filters for filenames begin with f:
## Filters for directories begin with d:
## (Inline comments begin with " ##" and extend to the end of the line)

f: \..svn$ ## SVN control file

d: \\cvs$ ## CVS control directory
d: \\.svn$ ## SVN control directory

2 comments for “SVN Filter for WinMerge”

  1. Gravatar of SatishSatish
    Posted Friday, October 29, 2010 at 3:37:24 PM

    Thanks...saved time for me

  2. Gravatar of SamSam
    Posted Tuesday, July 26, 2011 at 5:42:27 PM

    Thanks for this. Saved me some time.

Post a comment