Answers for "how to add gitignore to github and add files to it"

15

git add gitignore

$ touch .gitignore
Posted by: Guest on June-09-2020
11

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 "how to add gitignore to github and add files to it"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language