🚨

commit した node_modules を GitHub から ignore したい

2022/05/04に公開

環境構築している最中に間違って node_modules を GitHub にあげてしまい、若干テンション下がることありますよね。
ありますよね。。

備忘録として GitHub に一度あげてしまった node_modules を削除する方法を残しておきます。

1 .gitignore ファイルを作る

$ touch .gitignore

2 .gitignore に node_modules を追加する

node_modules の後ろにスラッシュがあるのがポイント
毎回スラッシュが後ろなのを忘れる。。

node_modules/

3 node_modules を Git の監視対象から外す

git rm -r --cached node_modules

あとは、コミットしてプッシュすれば無かったことになる。

Discussion