DS_Store 是给Finder用来存储这个文件夹的显示属性的:比如文件图标的摆放位置。删除以后的副作用就是这些信息的失去。(当然,这点副作用其实不是太大).
删除GIT中的.DS_Store ??项目中还没有 .DS_Store ?直接将 .DS_Store 加入到 .gitignore 文件就可以了。
??项目中已经存在 .DS_Store 文件 ?首先从项目中将其删除,再将它加入到 .gitignore。如下:
1.删除项目中的所有.DS_Store。这会跳过不在项目中的 .DS_Store
find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch
2.将 .DS_Store 加入到 .gitignore
vim .gitignore ??.DS_Store
3.提交
git add .
git commit -m ‘.DS_Store banished!’