Howto SVN Clean your Folders

This command is useful when you want to clean a directory tree from all the .svn folders it might contain:

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

Basically it “finds” all the .svn folders and excutes rm -rf on each of these.

Leave a comment

Your comment