From 1e6809fec9a0c11eac6897528c04d22127ccef7b Mon Sep 17 00:00:00 2001 From: Lucas Alvares Gomes Date: Wed, 30 Nov 2016 17:02:33 +0000 Subject: [PATCH] Improve .gitignore This patch is improving the .gitignore files to not track things like: Python compiled code, Python eggs, VIM swap/backup files, etc... Change-Id: I2b82d0a54c2584f5a5f7e8792ea8c71aaba48183 --- .gitignore | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 092539c2..0554833f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,18 @@ +# Compiled python files +*.py[co] + +# Editors +.*.sw[klmop] +*~ + +# Packages/installer info +*.egg[s] +*.egg-info +dist +sdist + +# Other +.testrepository AUTHORS ChangeLog -dist/ -python_ipmi.egg-info/ .tox