scatterd-dotfiles/gitignore
George Brocklehurst 2ebe894793
Globally ignore compiled Python files.
The first time a `.py` file is run, or any time it's been modified, Python
creates a `.pyc` file containing a bytecode representation.

These bytecode files should always be ignored by Git, since keeping them
updated in a repo would be time consuming and would serve no purpose.
2016-01-11 08:09:48 -05:00

12 lines
110 B
Text

.DS_Store
*.sw[nop]
.bundle
.env
db/*.sqlite3
log/*.log
rerun.txt
tags
!tags/
tmp/**/*
!tmp/cache/.keep
*.pyc