Answers for "how to edit gitignore file"

13

create gitignore

# creates gitignore file
$ touch .gitignore
Posted by: Guest on July-11-2020
1

git update gitignore remove files

git rm --cached `git ls-files -i -c --exclude-from=.gitignore`
Posted by: Guest on August-15-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 "how to edit gitignore file"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language