windows 下,清除.svn

windows 下,清除.svn

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

You can also issue the line below straight from the Command Prompt:

FOR /F "tokens=*" %G IN ('DIR /B /AD /S *.svn*') DO RMDIR /S /Q "%G"
posted @ 2014-09-05 06:07  anjsxz  阅读(117)  评论(0编辑  收藏  举报