Removing all .svn folders in your checked out subversion project
Aug 15 2009If your response to this command is that you should use "svn export" then 78% chance you're 98% homosexual:
find . -name ".svn" -type d -exec rm -rf '{}' \;
If your response to this command is that you should use "svn export" then 78% chance you're 98% homosexual:
find . -name ".svn" -type d -exec rm -rf '{}' \;