vote up 0 vote down star

I'm trying to recursively compare two subversion working copy folders using WinMerge.

Unfortunately, WinMerge displays lots of differencing files inside of the subversion control folders (.svn or _svn).

Is it possible to somehow exclude the subversion folders from the comparision? Or is there another (free) diff-tool which is able to do this?

flag

65% accept rate

2 Answers

vote up 4 vote down check

WinMerge handles this just fine. You want to create and use a filter. Under Tools/Filters, create a new filter or modify an existing one. It will look like this:

## Ignore Java class and jar files
f: \.class$
f: \.jar$

## Ignore subversion housekeeping folders
d: \\.svn$
d: \\._svn$

Save it, then when selecting items to merge, select the filter you defined from the Select Files or Folders dialog box. Bonus points - It will save this and use it as a default for future merges.

link|flag
Thanks a lot! I discovered that there is even a predefined filter to exclude source control files and folders. – Martin Sep 25 at 13:30
vote up 0 vote down

WinMerge (Version 2.12.4) already includes a filter to exclude soure control files and directories, and it's called Exclude Source Control. It works for Subversion, CVS, Git, Bazaar and Mercurial, and it doesn't require you to create a filter, you just have to apply it during the comparison.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.