gitignore忽略Mac的DS_store文件
其实很简单的,参考这个帖子How can I Remove .DS_Store files from a Git repository?,这里记录下。
清除已经记录的文件
find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch
以后不记录该文件
echo .DS_Store >> .gitignore
git add .gitignore
git commit -m '.DS_Store banished!'
Written on July 22, 2018