[v2,2/4] .gitignore: ignore python bytecode files

Message ID 20190311105732.24121-2-bruce.richardson@intel.com (mailing list archive)
State Accepted, archived
Delegated to: Thomas Monjalon
Headers
Series [v2,1/4] .gitignore: add section header comments |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation success Compilation OK

Commit Message

Bruce Richardson March 11, 2019, 10:57 a.m. UTC
  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 | 3 +++
 1 file changed, 3 insertions(+)
  

Patch

diff --git a/.gitignore b/.gitignore
index b23e1dbb7..eb3c23705 100644
--- a/.gitignore
+++ b/.gitignore
@@ -16,3 +16,6 @@  GPATH
 GRTAGS
 tags
 TAGS
+
+# ignore python bytecode files
+*.pyc