Skip to content

Instantly share code, notes, and snippets.

View it-fm's full-sized avatar
🎯
Focusing

it-fm

🎯
Focusing
  • Brazil
View GitHub Profile
@it-fm
it-fm / remove-node-modules.md
Last active February 13, 2019 22:21 — forked from lmcneel/remove-node-modules.md
How to remove node_modules after they have been added to a repo

How to remove node_modules

  1. Create a .gitignore file in the git repository if it does not contain one

touch .gitignore 2. Open up the .gitignore and add the following line to the file

node_modules 3. Remove the node_modules folder from the git repository