- gti で .DS_Store を無視するよう設定する
$ vi ~/.gitignore_global
.DS_Store
$ git config --global core.excludesfile ~/.gitignore_global
- GitHub の .DS_Store を削除する
$ git rm -r --cached . $ git add . $ git commit -m "create .gitignore" $ git push origin master
$ vi ~/.gitignore_global
.DS_Store
$ git config --global core.excludesfile ~/.gitignore_global
$ git rm -r --cached . $ git add . $ git commit -m "create .gitignore" $ git push origin master