Answers for "if add my files to gitignore will it affect my code"

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 "if add my files to gitignore will it affect my code"

Browse Popular Code Answers by Language