删除

递归删除当前目录下指定文件名的文件夹

   find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch

原文地址:https://www.cnblogs.com/sherrykid/p/5911083.html