From a7403f0583b846127792f4853abae8c4b7b1684d Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Wed, 17 Jun 2015 01:01:15 +0000 Subject: [PATCH] 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 --- .gitignore | 14 +++++++++++++- {{cookiecutter.repo_name}}/.gitignore | 1 + 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index cdef1f3..08b7b97 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,7 @@ *.egg-info dist build +.eggs eggs parts bin @@ -25,6 +26,8 @@ pip-log.txt .coverage .tox nosetests.xml +.testrepository +.venv # Translations *.mo @@ -39,7 +42,16 @@ output/*.html output/*/index.html # Sphinx -docs/_build +doc/build + +# pbr generates these +AUTHORS +ChangeLog + +# Editors +*~ +.*.swp +.*sw? # Cookiecutter output/ diff --git a/{{cookiecutter.repo_name}}/.gitignore b/{{cookiecutter.repo_name}}/.gitignore index 8a3c704..e625780 100644 --- a/{{cookiecutter.repo_name}}/.gitignore +++ b/{{cookiecutter.repo_name}}/.gitignore @@ -8,6 +8,7 @@ *.egg-info dist build +.eggs eggs parts bin