Reputation: 19903
I'd like not commit the folder "node_modules"
I tried several solutions found around the web :
When I do npm install
this folder and all the packages are added to the file to commit and I get a warning from Visual Studio code because there are 5000 elements to commit.
Any idea ?
Upvotes: 0
Views: 1610
Reputation: 242
Create a .gitignore file and add node_modules/
if node_modules/
was added to your repository then you need to delete or .gitignote doesn't work.
Upvotes: 1