Post

Mac删除git文件夹里所有git、svn信息

cd到该文件夹,执行如下的命令

1
2
3
4
5
6
7
//删除文件夹下的所有 .svn 文件

find . -name ".svn" | xargs rm -Rf

//删除文件夹下的所有 .git 文件

find . -name ".git" | xargs rm -Rf
This post is licensed under CC BY 4.0 by the author.