From fbff01f31ed5b22223e0d2b29e121c3727a83fe5 Mon Sep 17 00:00:00 2001 From: Kiptoo Magutt Date: Wed, 31 Jan 2018 17:29:47 +0300 Subject: [PATCH] add local files and virtualenv folders to ignored set - 'venv/' is a common virtualenv folder name - also ignore local IDE setup files --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index 8071bc8f..63ec9671 100644 --- a/.gitignore +++ b/.gitignore @@ -16,9 +16,14 @@ cover # virtualenv environments env*/ +venv/ # build artifacts from python setup.py build or python setup.py install build/ dist/ *egg*/ docs/_build + +# local files +.cache/ +.idea/