# 在您的项目目录下面从仓库删除所有.DS_Store find . -name .DS_Store -print0 | xargs -0 git rm --ignore-unmatch # 配置全局git 忽略文件配置 echo .DS_Store >> ~/.gitignore_global # 配置git 使用全局忽略配置文件 git config --global core.excludesfile ~/.gitignore_global
mac下让git不跟踪.DS_Store文件
发表评论