Remove node_modules from git in vscode

  1. make .gitignore file.
  2. add node_modules/ line to gitignore file
  3. run this command  git rm -r --cached . git add . git commit -m "remove gitignore files" git push

Leave a Comment