递归删除.git目录
find . -name ".git" -type d -exec rm -rf {} \;
递归删除后缀为.iml文件
find . -name "*.iml" -type f -exec rm -rf {} \;