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.
This commit is contained in:
parent
fe31b3943b
commit
2ebe894793
1 changed files with 1 additions and 0 deletions
|
@ -9,3 +9,4 @@ tags
|
|||
!tags/
|
||||
tmp/**/*
|
||||
!tmp/cache/.keep
|
||||
*.pyc
|
||||
|
|
Loading…
Add table
Reference in a new issue