Tuesday, July 17, 2012
How to Delete all .svn folders using Windows Command Prompt
You can use the following command to delete all .svn folders in curent directory recursively.
FOR /R . %f IN (.svn) DO RD /s /q %f
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment