How to delete svn file directories in windows

Friday of November 25, 2011

To delete all the .svn files inside a directory path type the following command in your project directory: find ./ -name ".svn" | xargs rm -Rf. This command will search for all the .svn files and remove all the contents recursively.