Mac下删除 工程中的.svn文件 命令

打开终端,进入项目所在的文件夹:使用命令find . -type d -name ".svn" |xargs rm -rvf就可将项目的.svn全部删除;

你可能感兴趣的:(终端)