From 712066e0c7bc5131155e7f2ce7b7d21870a473f0 Mon Sep 17 00:00:00 2001 From: Al Bailey Date: Tue, 15 Oct 2019 13:42:18 -0500 Subject: [PATCH] Updating .gitignore to exclude egg-info When running tox for sysinv, egg-info is created in this repo. This causes the repo status and git status commands to show unmanaged files. By adding .egg-info to the .gitignore, those un-managed files are ignored. Change-Id: I7a993ae62c1ea5310d71519e5b95c8ff1200526b Story: 2004515 Task: 37142 Signed-off-by: Al Bailey --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 172bf578..cd5c4a44 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ .tox +*.egg-info