/ 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.

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