find . -name .svn -print0 | xargs -0 rm -rf
This will remove all .svn folders and their contents even in subdirectories. Note if you don’t want the .svn folders it’s better to do an svn export instead of checkout.
find . -name .svn -print0 | xargs -0 rm -rf
This will remove all .svn folders and their contents even in subdirectories. Note if you don’t want the .svn folders it’s better to do an svn export instead of checkout.
Post a Comment