SVN – Remove the .svn folder by command in Linux

You can use the following command to remove all the .svn folder in Linux.

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

Done =)

Reference: Remove .svn folder by command

Leave a comment

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