打开终端,进入项目所在文件夹,使用如下命令:
find . -type d -name ".svn" |xargs rm -rvf
即可将项目中.svn全部删除。
同理:
删除项目中所有 .git 文件夹:
find . -type d -name ".git" |xargs rm -rvf