Skip to content

Instantly share code, notes, and snippets.

@perade
perade / gist:fd607f9e8feab10e7d3ca90aecff69fa
Created November 22, 2020 07:11 — forked from paulallies/gist:0052fab554b14bbfa3ef
Remove node_modules from git repo
#add 'node_modules' to .gitignore file
git rm -r --cached node_modules
git commit -m 'Remove the now ignored directory node_modules'
git push origin master