svn: remove all .svn folders

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

Your email is never published nor shared. Required fields are marked *