Pages

Showing posts with label SVN. Show all posts
Showing posts with label SVN. Show all posts

Saturday, April 26, 2014

Delete all .svn folders using Windows Command Prompt



You can use the following command to delete all .svn folders in your subversion directory recursively.
FOR /R . %f IN (.svn) DO RD /s /q %f
refer link : http://www.forouzani.com/delete-all-svn-folders-using-windows-command-prompt.html