Answers for "gitignore node_modules in all folders"

6

how to gitignore node modules

touch .gitignore  //to create a .gitignore if you dont have one
echo "node_modules/" >> .gitignore //this adds node_modules to gitignore
cat .gitignore //checks what files you have in your gitignore
Posted by: Guest on April-14-2021
0

ignore node modules

//create a .gitignore file and add the following in it
# dependencies
node_modules
Posted by: Guest on May-31-2020

Code answers related to "gitignore node_modules in all folders"

Browse Popular Code Answers by Language