You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
442 B
Plaintext
56 lines
442 B
Plaintext
# reference: https://git-scm.com/docs/gitignore
|
|
|
|
output/*.*
|
|
!output/.gitkeep
|
|
|
|
# ansible
|
|
*.retry
|
|
|
|
# compiled source
|
|
bin/
|
|
*.com
|
|
*.class
|
|
*.dll
|
|
*.exe
|
|
*.o
|
|
*.so
|
|
|
|
# database
|
|
*.sql
|
|
*.sqlite
|
|
|
|
# lock files
|
|
*.lock
|
|
package-lock.json
|
|
|
|
# logs
|
|
logs/
|
|
*.log
|
|
|
|
# OS generated files
|
|
.DS_Store*
|
|
ehthumbs.db
|
|
Icon?
|
|
Thumbs.db
|
|
|
|
# packages
|
|
*.7z
|
|
*.dmg
|
|
*.gz
|
|
*.iso
|
|
*.rar
|
|
*.tar
|
|
*.zip
|
|
|
|
# python
|
|
*.py[cod]
|
|
__pycache__/
|
|
|
|
# temporary files
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Vagrant
|
|
.vagrant/
|