aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2016-03-01 11:27:36 +1300
committerMartin Jansa <Martin.Jansa@gmail.com>2016-03-07 13:09:54 +0100
commitbd4c475915d8d81dc759308279c6612591d145dc (patch)
tree304be36e0251b13f2f4384bebc1e496e1a288a12
parentc1cf7c4a4cd553502e59ad665b5f91e906098b5c (diff)
Add .gitignore to ignore .pyc/.pyo files
Since we just added lib/ containing python modules, we should really ignore any compiled python objects since they will be produced if the code is executed. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r--.gitignore2
1 files changed, 2 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 00000000..52e4e611
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+*.pyc
+*.pyo