Getting error while removing node_modules in git, vscode terminal
node_modules
git rm -r --cached node_modules
Error:
I faced the same issue. Do the below steps -
Run below commands in your terminal
git commit -am "node_modules be gone!"
git push origin master
That's all!
You are good to go!