Created
January 12, 2017 21:49
-
-
Save zhiwehu/d996899ee2af6448b6a92ca000811f73 to your computer and use it in GitHub Desktop.
python .gitignore
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Python bytecode: | |
| *.py[co] | |
| # Packaging files: | |
| *.egg* | |
| # Sphinx docs: | |
| build | |
| # SQLite3 database files: | |
| *.db | |
| # Logs: | |
| *.log | |
| # Eclipse | |
| .project | |
| .pydevproject | |
| .settings | |
| # Linux Editors | |
| *~ | |
| \#*\# | |
| /.emacs.desktop | |
| /.emacs.desktop.lock | |
| .elc | |
| auto-save-list | |
| tramp | |
| .\#* | |
| *.swp | |
| *.swo | |
| # Mac | |
| .DS_Store | |
| ._* | |
| # Windows | |
| Thumbs.db | |
| Desktop.ini | |
| # Virtualenv | |
| env |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment