Note to self -> delete .svn folders
April 11th, 2011
No comments
Note to self:
The easy way to delete the .svn folders
find . -name ".svn" -exec rm -rf {} \;
at least when I copy a project, it doesn’t take hours to remove the svn folders.
Categories: uncategorized