10
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

node_modules以下を大量に git add してしまった場合の覚書

Last updated at Posted at 2018-07-02

くっそ基本的なことだけど...

.gitignore ファイル作成

中身に

node_module/

てだけ書いてsave
コミットしたくないファイルは .gitignoreに書いていく

アンステージ処理

git rm -r --cached node_modules  

でステージにあげてしまったnode_modules以下をアンステージ出来る

最後に.gitignoreファイルをコミットして終了

git add .
git commit 
10
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?