Showing posts with label Project Delivery. Show all posts
Showing posts with label Project Delivery. Show all posts

Tuesday, January 10, 2012

Remove all .svn files

While checkout from SVN repositary the repositary information is present in the directory .svn. While delivering project/source code we have to remove such .svn directories.

Instead of removing each .svn folder manually execute this command to delete all .svn folders recursively.

find ./ -name ".svn" | xargs rm -Rf