Search found 7 matches

by jsivak
Fri May 11, 2007 6:22 am
Forum: ExamDiff Pro
Topic: Trouble with ignoring Subversion directories with EDP
Replies: 21
Views: 47111

I believe we already covered this.

:*\.svn
does match directories named ".svn", and you seem to have tested that .

Sorry, you're right.. I was getting my "issues" mixed up.

Have you tried comparing a checked out SVN project against an "exported" SVN project (one that doesn't have all of the ...
by jsivak
Thu May 10, 2007 6:21 am
Forum: ExamDiff Pro
Topic: Trouble with ignoring Subversion directories with EDP
Replies: 21
Views: 47111

Except

Code: Select all

:*\.svn
doesn't seem to match/ignore a directory named ".svn". (When that directory is present on only one "side" of the comparison.)
by jsivak
Wed May 09, 2007 10:01 am
Forum: ExamDiff Pro
Topic: Trouble with ignoring Subversion directories with EDP
Replies: 21
Views: 47111

In using :*\.svn I'm still seeing a substantial slow down when comparing a subversion "sandbox" with a directory that doesn't have the .svn subdirectories.

But when using :*\.svn\* its much faster. (but it shows the ".svn" directories)

Its like the first exclusion pattern is not ignoring the ...
by jsivak
Tue May 08, 2007 6:57 am
Forum: ExamDiff Pro
Topic: Trouble with ignoring Subversion directories with EDP
Replies: 21
Views: 47111

If .svn folders only exist in the left directory then the results look right. In your first filter you ignore .svn names, and that is what EDPro sees when it scans the left directory. *\.svn\* filter (which is a path filter because of ':'), on the other hand, does not match the path D:\sandbox\b_5 ...
by jsivak
Mon May 07, 2007 7:50 am
Forum: ExamDiff Pro
Topic: Trouble with ignoring Subversion directories with EDP
Replies: 21
Views: 47111

Screenshot using

Code: Select all

:*\.svn\*,:*\CVS\*,CVS,.svn
Image


Screenshot using

Code: Select all

:*\.svn\*,:*\CVS\*,CVS
Image

All the sub-directories now show "different" because the .svn directories are seen on the left but not the right.
by jsivak
Fri May 04, 2007 9:34 am
Forum: ExamDiff Pro
Topic: Trouble with ignoring Subversion directories with EDP
Replies: 21
Views: 47111

Acutally, I stumbled across a way to make it disappear.

For CVS directories:
If I use:
:*\.svn\*,:*\CVS\*,CVS

The CVS directories are hidden when they only "exist" in 1 directory and not the other

If I use:
:*\.svn\*,:*\CVS\*
Then the CVS directories are shown.

Same goes for .svn ...
by jsivak
Thu May 03, 2007 11:22 am
Forum: ExamDiff Pro
Topic: Trouble with ignoring Subversion directories with EDP
Replies: 21
Views: 47111

I'm almost sure this will also exclude files or folders named for instance "important.synonyms.txt".
It's safer to use :*\.svn\*

I'm using :*\.svn\* in my Exclude pattern, but when I compare a Subversion controlled directory to a non-subversion controlled directory I'm still seeing the ".svn ...