I want to upload my React Project to GitHub but I want to exclude the node modules folder, how do I do that ?
CodePudding user response:
Create a .gitignore file at the root of your project and add this line:
/node_modules
I want to upload my React Project to GitHub but I want to exclude the node modules folder, how do I do that ?
CodePudding user response:
Create a .gitignore file at the root of your project and add this line:
/node_modules