Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

node modules folder not getting ignore in git

touch .gitignore 
&& echo "node_modules/" >> .gitignore 
&& git rm -r --cached node_modules/ 
&& git status
 
PREVIOUS NEXT
Tagged: #node #modules #folder #ignore #git
ADD COMMENT
Topic
Name
6+5 =