Joshua Jacobs
Remove SVN From Directory Tree
This little script will remove all SVN dirs from a directory tree:
find . -name “.svn” -type d -exec rm -rf {} \;
Credit to http://snippets.dzone.com/posts/show/2486
-
Meta
This little script will remove all SVN dirs from a directory tree:
find . -name “.svn” -type d -exec rm -rf {} \;
Credit to http://snippets.dzone.com/posts/show/2486