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.
12 lines
110 B
Text
12 lines
110 B
Text
.DS_Store
|
|
*.sw[nop]
|
|
.bundle
|
|
.env
|
|
db/*.sqlite3
|
|
log/*.log
|
|
rerun.txt
|
|
tags
|
|
!tags/
|
|
tmp/**/*
|
|
!tmp/cache/.keep
|
|
*.pyc
|