清除项目里的svn(或cvs)的小技巧

在linxu下用robbin的法子:

find . -type d -iname ".svn" -exec rm -rf {} /;   

在windows下用以下法子:

1、在项目平级的目录,执行dos命令:
xcopy project_dir project_dir_1 /s /i

 

2、或者在项目根目录执行以下dos命令
for /r . %%a in (.) do @if exist "%%a/.svn" rd /s /q "%%a/.svn"

你可能感兴趣的:(windows,SVN,dos,cvs)