Answers for "add folder to gitignore git bash"

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

add folders to gitignore

dir_to_ignore/
Posted by: Guest on October-27-2021

Browse Popular Code Answers by Language