From 42f1a5ecc57c9ba231fe34a47e5bb8a36c9632ab Mon Sep 17 00:00:00 2001 From: linbing Date: Sat, 24 Sep 2016 06:21:47 +0800 Subject: [PATCH] Update .gitignore to ignore out logs When you have running tox -elint, it's will generate logs dir in the project, It's useful to add logs in .gitignore to avoid logs to be commited. And, when you have using pycharm to open this project, it's will generate a hide dir .idea, so it's also needed to be ignore Change-Id: Ia86897b5971703cb83c8b32d502ce955b8419ac0 --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 24c7bfe6c..169b26b79 100644 --- a/.gitignore +++ b/.gitignore @@ -8,4 +8,6 @@ .testrepository .tox .venv +logs +.idea AUTHORS