From: Bruce Richardson Date: Mon, 11 Mar 2019 10:57:30 +0000 (+0000) Subject: git: ignore python bytecode files X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=5957cda7af9c55da3dbb8c2cd79befe77197de9f;p=dpdk.git 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 --- 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