How do I recursively remove all .svn folders?

0 Comments

This can come in handy when you’ve done a checkout, but actually needed an export:

find . -name "".svn"" -type d -exec rm -rf {} \;

Was this answer helpful ? Yes (0) / No (0)

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

reduction