Skip to content

Instantly share code, notes, and snippets.

View hasanuzzamanbe's full-sized avatar
👋
Hi

Hasanuzzaman Shamim hasanuzzamanbe

👋
Hi
View GitHub Profile
@hasanuzzamanbe
hasanuzzamanbe / remove-node-modules.md
Created July 2, 2019 11:45 — 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