susanahernandezd
2/5/2020 - 5:40 AM

Unstage node_modules folder

#make .gitignore file.
#add node_modules/ line to gitignore file
#run this command 
git rm -r --cached <PATH> o <FILE> (ex: node_modules/)
git add .
git commit -m "remove gitignore files"
git push