Thursday, June 22, 2017

How to remove all SVN folders and files

Here is the command to remove all svn folder and files in Windows:

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

No comments:

Post a Comment