Ignore .key/.crt in .gitignore
This commit is contained in:
parent
d307fab507
commit
e2e4184bdc
1 changed files with 15 additions and 4 deletions
19
.gitignore
vendored
19
.gitignore
vendored
|
@ -61,10 +61,21 @@ target/
|
||||||
#Ipython Notebook
|
#Ipython Notebook
|
||||||
.ipynb_checkpoints
|
.ipynb_checkpoints
|
||||||
|
|
||||||
# custom
|
# BitBot
|
||||||
|
# databases
|
||||||
*.db
|
*.db
|
||||||
*.conf
|
|
||||||
modules/nongit-*.py
|
|
||||||
bot.log.*
|
|
||||||
bot.db.*
|
bot.db.*
|
||||||
test-databases/*
|
test-databases/*
|
||||||
|
|
||||||
|
# configs
|
||||||
|
*.conf
|
||||||
|
|
||||||
|
# log
|
||||||
|
bot.log.*
|
||||||
|
|
||||||
|
# ignored modules
|
||||||
|
modules/nongit-*.py
|
||||||
|
|
||||||
|
# tls
|
||||||
|
bot.crt
|
||||||
|
bot.key
|
||||||
|
|
Loading…
Reference in a new issue