lacee1986
6/1/2017 - 9:17 AM

Remove folder from git.

Remove folder from git.

#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