Answers for "add folder to git ignore"

0

git ignore added folder

git rm -r --cached <folder> // git rm -r --cached dist
Posted by: Guest on May-21-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
0

gitignore all log files

*.log
!spec/*.log
Posted by: Guest on September-29-2020
1

add folders to gitignore

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

Code answers related to "add folder to git ignore"

Browse Popular Code Answers by Language