git: ignore python bytecode files
authorBruce Richardson <bruce.richardson@intel.com>
Mon, 11 Mar 2019 10:57:30 +0000 (10:57 +0000)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 13 Mar 2019 10:53:20 +0000 (11:53 +0100)
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 <bruce.richardson@intel.com>
.gitignore

index b23e1db..eb3c237 100644 (file)
@@ -16,3 +16,6 @@ GPATH
 GRTAGS
 tags
 TAGS
+
+# ignore python bytecode files
+*.pyc