Skip to content

Instantly share code, notes, and snippets.

@Gio-Mgm
Gio-Mgm / gist:ff843b4bc273fbdf319e3b18075549ea
Created October 1, 2018 15:17 — 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