RE: Cleaning up .svn directories
From: Jonathan Chum <jchum_at_aismedia.com>
Date: 2005-04-27 19:48:50 CEST
The first method (find /your/working/copy -type d -name .svn -exec rm -rf {}
Jonathan Chum
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-----Original Message-----
On 26.04.2005, at 18:35, André Pönitz wrote:
> Sebastien Arbogast
I like using this:
find /your/working/copy -type d -name .svn -print0 | xargs -0 rm -rf
That works even if you've got spaces in your paths.
Presumably you could also do an svn export.
\r
---------------------------------------------------------------------
---------------------------------------------------------------------
|
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.