/ Published in: SVN
Recursively removes all .svn directories within a directory
Expand |
Embed | Plain Text
find . -name .svn -print0 | xargs -0 rm -rf
Comments
Subscribe to comments
You need to login to post a comment.
speck on 07/02/06
svn delete subversion recursive
41 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
koncept
Mithun
Leech
LeeC
peonhunter
jdbartlett
noah
yuindustries
nightowl
jmacgr
ReeceMarsland
kwanhon
omerta83
LarryStreeter
chrisaiv
tspitzr
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
Usefull as hell.
Thanks for this, it's very helpful.
Also @mountainash thanks for mentioning
svn export