.DS_Store remove from git code example
Example: ds_store gitignore
find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch
git add .gitignore
git commit -m '.DS_Store banished!'
find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch
git add .gitignore
git commit -m '.DS_Store banished!'