RE: How to specify global-ignores containing space?
From: Rob Hubbard <rob.hubbard_at_softel.co.uk>
Date: Thu, 22 Jan 2009 09:25:49 -0000
Hello Henrik,
I've had a similar problem. I wanted to exclude the Windoze 'Copy of
' ' - because, like any whitespace, it's interpreted as a
These did work (although they will match and therefore ignore a little
'?' - i.e. glob metacharacter meaning any single character
I opted for '?', although '[^a-zA-Z0-9_]' is slightly better in terms of
Thus to ignore the 'Copy of ...' files, I used the following patterns:
Copy[!a-zA-Z0-9_]of[!a-zA-Z0-9_]*
If you wish to ignore certain 'user' files, I've found it useful to put
my_file__.txt
The patterns for these are:
*__.*
Hope this helps (a bit), though it's not a full answer,
Rob.
Rob Hubbard
> -----Original Message-----
________________________________________________________________
Powering Television Beyond the Video (TM)
------------------------------------------------------
To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_subversion.tigris.org].
|
This is an archived mail posted to the Subversion Users mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.