Deleting .svn references
I always forget this little snippet so…
find . -name .svn -type d -print0 | xargs -0 rm -rf
This will delete all .svn references in a directory and its subdirectories, no questions asked. Use with care.
I always forget this little snippet so…
find . -name .svn -type d -print0 | xargs -0 rm -rf
This will delete all .svn references in a directory and its subdirectories, no questions asked. Use with care.