
As a first-code-commit excercise I'm walking through the whole project setup process. Given that I like using IntelliJ as my IDE, adding a few things to the .gitignore seems innocuous enough. Change-Id: I2d08c966448d8ebc8dec72ceb88cb834dab40b78
64 lines
564 B
Plaintext
64 lines
564 B
Plaintext
*.py[cod]
|
|
|
|
# C extensions
|
|
*.so
|
|
|
|
# Editor save files
|
|
*~
|
|
*.swo
|
|
*.swp
|
|
|
|
# Development databases
|
|
*.db
|
|
|
|
# Packages
|
|
*.egg
|
|
*.egg-info
|
|
dist
|
|
build
|
|
eggs
|
|
parts
|
|
bin
|
|
var
|
|
sdist
|
|
develop-eggs
|
|
.installed.cfg
|
|
lib
|
|
lib64
|
|
|
|
# Installer logs
|
|
pip-log.txt
|
|
|
|
# Unit test / coverage reports
|
|
nosetests.xml
|
|
.coverage
|
|
.tox
|
|
.testrepository
|
|
.venv
|
|
|
|
# Translations
|
|
*.mo
|
|
|
|
# Mr Developer
|
|
.mr.developer.cfg
|
|
.project
|
|
.pydevproject
|
|
|
|
# Complexity
|
|
output/*.html
|
|
output/*/index.html
|
|
|
|
# Sphinx
|
|
doc/build
|
|
|
|
# pbr generates these
|
|
AUTHORS
|
|
ChangeLog
|
|
|
|
# Local settings
|
|
local_settings.py
|
|
|
|
# IDE settings
|
|
.idea
|
|
*.iml
|