Note to self -> delete .svn folders
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
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.