From 5957cda7af9c55da3dbb8c2cd79befe77197de9f Mon Sep 17 00:00:00 2001 From: Bruce Richardson Date: Mon, 11 Mar 2019 10:57:30 +0000 Subject: [PATCH] git: ignore python bytecode files After you run a python script, a .pyc file is often left behind, which we don't want to track in git. Signed-off-by: Bruce Richardson --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index b23e1dbb7a..eb3c23705b 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,6 @@ GPATH GRTAGS tags TAGS + +# ignore python bytecode files +*.pyc