Bescottee苦しいときは伸びてるとき、楽なときは伸びていないとき

2 git add,commitのあとに .gitignore にファイルを追加したときの対処方法

admin to git  

対象を同時に削除する場合

ファイルの場合

git rm -f app/app.iml

フォルダの場合

git rm -rf app/build/

対象をローカルに保持したまま、git管理対象から削除する場合

ファイルの場合

git rm --cached -f app/app.iml

フォルダの場合

git rm --cached -rf app/build/

コメントをどうぞ