Ignore .eggs cruft

Looks like possibly new setuptools has started leaving a .eggs
directory in the workspace. Add it to .gitignore with extreme
prejudice.

Also sync the local .gitignore with the one we're recommending.

Change-Id: Icc00208e29d3ba6d27d1626db6ab956fa286594a
This commit is contained in:
Jeremy Stanley
2015-06-17 01:01:15 +00:00
parent 71034d811c
commit a7403f0583
2 changed files with 14 additions and 1 deletions

14
.gitignore vendored
View File

@@ -8,6 +8,7 @@
*.egg-info *.egg-info
dist dist
build build
.eggs
eggs eggs
parts parts
bin bin
@@ -25,6 +26,8 @@ pip-log.txt
.coverage .coverage
.tox .tox
nosetests.xml nosetests.xml
.testrepository
.venv
# Translations # Translations
*.mo *.mo
@@ -39,7 +42,16 @@ output/*.html
output/*/index.html output/*/index.html
# Sphinx # Sphinx
docs/_build doc/build
# pbr generates these
AUTHORS
ChangeLog
# Editors
*~
.*.swp
.*sw?
# Cookiecutter # Cookiecutter
output/ output/

View File

@@ -8,6 +8,7 @@
*.egg-info *.egg-info
dist dist
build build
.eggs
eggs eggs
parts parts
bin bin