Page 1 of 1

comma ,v in file name: correct ignore pattern ?

Posted: Wed Jul 16, 2008 3:53 am
by bmerkle
I tried to setup a ingore pattern for CVS version files on the server which end with ,v (",v")
however the following pattern seem not to match it.

Code: Select all

#*, #*.*, *_v, *.*/,v
I read in the docu that / should be used to mask out , but unfortunately *.*/,v does not work

thanks,
Bernhard.

Re: comma ,v in file name: correct ignore pattern ?

Posted: Wed Jul 16, 2008 10:18 am
by psguru
It's actually '\', and it should replace comma. So if you want to exclude ",v" use "/v". If you do it through the "Edit Filter" command (click on the arrow next to the filter drop-down), you can use commas, and the UI will convert them into slashes.

Re: comma ,v in file name: correct ignore pattern ?

Posted: Fri Jul 18, 2008 5:41 am
by bmerkle
great ! I did not see the edit dialog until now. Really usefull.

thanks for your help.