Remove .svn recursive

Im having hard time to do my application code cleanup. after a few google search result hop.

So, this is how to remove .svn folder recursively (works in linux terminal) :

find . -name ".svn" -exec rm -rf {} \;
Post comment as twitter logo facebook logo
Sort: Newest | Oldest