删掉git服务器上的.DS_Store文件

删除项目中的所有.DS_Store。这会跳过不在项目中的 .DS_Store

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

将 .DS_Store 加入到 .gitignore

echo .DS_Store >> ~/.gitignore

更新项目

git add --all
git commit -m '.DS_Store banished!'

你可能感兴趣的:(删掉git服务器上的.DS_Store文件)