bcd581fcb3
Since https://review.openstack.org/#/c/592520/ editor temporary files aren't ignore anymore. This comment tells how to do that in order to avoid future people coming around and wanting to add editor related rules in the .gitignore file. Change-Id: I47b7ebf7c8afe22c4bd7643c855940649f6da52c
65 lines
932 B
Plaintext
65 lines
932 B
Plaintext
# If you want to ignore sour editor temp files, please follow this:
|
|
# - create ~/.gitignore, add your content
|
|
# - git config --global core.excludesfile '~/.gitignore'
|
|
# Byte-compiled / optimized / DLL files
|
|
__pycache__/
|
|
*.py[cod]
|
|
|
|
# C extensions
|
|
*.so
|
|
|
|
# Distribution / packaging
|
|
.Python
|
|
env/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
sdist/
|
|
var/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# PyInstaller
|
|
# Usually these files are written by a python script from a template
|
|
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Installer logs
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# Unit test / coverage reports
|
|
htmlcov/
|
|
.tox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*,cover
|
|
|
|
# Translations
|
|
*.mo
|
|
*.pot
|
|
|
|
# Django stuff:
|
|
*.log
|
|
|
|
# Sphinx documentation
|
|
doc/build/
|
|
|
|
# PyBuilder
|
|
target/
|
|
|
|
# virtualenv
|
|
.venv/
|
|
|
|
# Files created by releasenotes build
|
|
releasenotes/build
|