how to delete node modules from github code example
Example 1: how to remove node_modules from git
# Do the below steps -
# Make .gitignore file.
# Run below commands in your terminal
git rm -r --cached node_modules
git commit -am "node_modules be gone!"
git push origin master
Example 2: how to remove node modules from github
remove node_modules
git rm -r --cached node_modules
git commit -am "node_modules be gone!"
git push origin master