Skip to content

Instantly share code, notes, and snippets.

View nitishk72's full-sized avatar
🏠
Working from home

Nitish Kumar Singh nitishk72

🏠
Working from home
View GitHub Profile
@nitishk72
nitishk72 / remove-node-modules.md
Created July 27, 2020 10:56 — 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