当前位置: 代码迷 >> CVS/SVN >> 驱除SVN版本信息
  详细解决方案

驱除SVN版本信息

热度:9576   发布时间:2013-02-26 00:00:00.0
清除SVN版本信息
@echo on
color 2f
mode con: cols=80 lines=25
@REM
@echo Deleting all .svn, please wait......
@rem Delete .svn in current and sub directories
@rem for /r . %%a in (.) do @if exist "%%a\.svn" @echo "%%a\.svn"
@for /r . %%a in (.) do @if exist "%%a\.svn" rd /s /q "%%a\.svn"
@echo SUCCESS!!!
@pause
  相关解决方案