git ignore node_modules example
Example: add node modules to git ignore
## New Solution:
## create .gitignore & add node_modules
git rm -r --cached .
git add .
git commit -m"removed all files from gitignore"
git push origin master
## New Solution:
## create .gitignore & add node_modules
git rm -r --cached .
git add .
git commit -m"removed all files from gitignore"
git push origin master