Answers for "git ignore file example"

15

.gitignore

node_modules
.DS_Store
.env
Posted by: Guest on November-11-2019
8

how to put files into gitignore

$ echo debug.log >> .gitignore
$ git rm --cached debug.log
rm 'debug.log'
$ git commit -m "Start ignoring debug.log"
Posted by: Guest on June-03-2020
-1

git ignore not saving changes

git rm -rf --cached .
git add .
Posted by: Guest on June-02-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language