How to create gitignore file to execule node_modules folder
If you are using command line you can use below commands in the terminal of the project directory: touch will create .gitignore file if it doesn’t exist echo and >> will append node_modules/ at the end of.gitignore file After node_modules/ folder is added to the .gitignore file, this folder and all subfoders will be ignored …
How to create gitignore file to execule node_modules folder Read More »