Posts Tagged ‘tips and tricks’

Command to remove .svn folders

Sunday, November 8th, 2009


Place this in a .cmd file on Windows to remove all the .svn folders.

FOR /F “tokens=*” %%G IN (’DIR /B /AD /S *.svn*’) DO RMDIR /S /Q “%%G”