How to remove Node Modules from GitHub repository
make .gitignore file. add node_modules/ line to gitignore file Follow those command git rm -r --cached . git add . git commit -m "remove nodeModules files (by sameerkali)" git push -f
Sep 22, 20231 min read56
