Published in: SVN
Recursively removes all .svn directories within a directory
find . -name .svn -print0 | xargs -0 rm -rf
Comments
Subscribe to comments
You need to login to post a comment.
Version Control with Subversion
Written by members of the Subversion open source development team, Version Control with Subversion introduces the powerful new versioning tool designed to be the successor to the Concurrent Version System or CVS. CVS users will find the "look and feel" Subversion comfortably familiar, but under the surface it's far more flexible, robust, and usable, and more importantly, it improves on CVS's more notable flaws.
speck on 07/02/06
svn delete subversion recursive
29 people have marked this snippet as a favorite
tylerhall
jonhenshaw
bomberstudios
xaviaracil
Roshambo
helle
toby
bartbons
mblarsen
Phoenix
duandan
hyperspace
Mikker
craiga
vali29
SamuelMiller
berkes
kristin
sp1r1t
tcol
martinkas
stphnclysmth
wbowers
melling
johnself
Tenzer
koncept
Mithun
Leech
Published in: SVN
Recursively removes all .svn directories within a directory
find . -name .svn -print0 | xargs -0 rm -rf
Subscribe to comments
You need to login to post a comment.
Really useful.
Don't forget you can use the
svn exportcommand to make a copy of the repos without the .svn folders.svn export repos/ destination/
Thank you