Re: Prevent checkout of double files in .svn directory?
From: Patrick Smears <patrick.smears_at_ensoft.co.uk>
Date: 2004-08-26 10:12:46 CEST
On Thu, 26 Aug 2004, Markus Fischer wrote:
> the concept having the prestine copy always there is nice, but is quite
I don't think there is, but you can use 'find' / 'xargs' to search in
find . -path '*/.svn' -prune -o -print | xargs grep foo
or better still:
find . -path '*/.svn' -prune -o -print0 | xargs -0 grep foo
which copes better with filenames containing spaces/other nasty
Patrick
---------------------------------------------------------------------
|
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.