Answers for "how to use a gitignore"

13

create gitignore

# creates gitignore file
$ touch .gitignore
Posted by: Guest on July-11-2020
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

how to generate a .gitignore

echo "function gi() { curl -L -s https://www.gitignore.io/api/$@ ;}" >> ~/.bash_profile && source ~/.bash_profile
Posted by: Guest on December-21-2020
0

how to add filer to git ignore

go to the gitignore file, add the name of the file to ignore
Posted by: Guest on February-09-2021

Code answers related to "how to use a gitignore"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language