Re: svndumpfilter does not exclude some files
From: Stefan Sperling <stsp_at_elego.de>
Date: Mon, 15 Oct 2012 11:30:45 +0200
On Mon, Oct 15, 2012 at 12:56:40PM +0800, Jason Heeris wrote:
The square brackets are wildcard syntax saying "match any of the characters
The pattern you originally tried to use:
/specs/[01234]
would match any of the following paths:
/specs/0
But not this path, assuming '[01234]' is a literal part of the filename:
/specs/[01234] product x spec.pdf
The pattern you ended up using is a better way of matching those paths:
/specs*01234*
You should be able to quote the square brackets with a backslash to prevent
/specs/\[01234\]*pdf
|
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.