Answers for "gitignore nodemodule"

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
1

ignore all node_modules

.gitignore
node_modules
Posted by: Guest on August-15-2020

Browse Popular Code Answers by Language