Answers for "where i can find gitignore file"

1

git doesn't ignore files in gitignore

git rm --cached [filename]
Posted by: Guest on August-19-2021
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

Code answers related to "where i can find gitignore file"

Browse Popular Code Answers by Language