はじめに
.gitignoreの反映方法をいつも忘れるので自分用メモ
本当に毎回忘れる...
git rm --cached
でキャッシュを消す
# .gitignore編集 $ vi .gitignore ---- vi ---- sample.txt ------------ # キャッシュを消す $ git rm --cached sample.txt # pushする $ git add .gitignore $ git commit -m 'add .gitignore' $ git push origin master
おわり
これ本当に毎回忘れるーーーーーーー\(^o^)/
覚えておく必要もないけど...