@echo on
color 2f
mode con: cols=80 lines=25
@REM
@echo 正在清理git文件,请稍候......
@rem 循环删除当前目录及子目录下所有的SVN文件
@rem for /r . %%a in (.) do @if exist "%%a\.svn" @echo "%%a\.svn"
@for /r . %%a in (.) do @if exist "%%a\.git" rd /s /q "%%a\.git"
@echo 清理完毕!!!
@pause

相关文章:

  • 2021-08-09
  • 2022-12-23
  • 2022-12-23
  • 2021-12-26
  • 2022-12-23
  • 2022-01-15
  • 2021-08-19
猜你喜欢
  • 2021-06-25
  • 2022-12-23
  • 2022-12-23
  • 2021-07-22
  • 2021-04-05
  • 2022-02-22
相关资源
相似解决方案