去除git版本控制


命令:find . -name ".git" | xargs rm –Rf


123


linux


$ find . -type d -iname '__pycache__' -exec rm -rf {} ;

原文地址:https://www.cnblogs.com/gispathfinder/p/10555347.html