1. .DS_Store ํ์ผ ์ญ์
find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch
// ๋๋ ๊ณ ๋ฅ .DS_Store์๋ ํ์ผ์์ rm -f .DS_Store
2. .gitignore ํ์ผ ์์ฑ ํ .DS_Store ์ถ๊ฐ
echo .DS_Store >> .gitignore
๋ฐ์ํ