aboutsummaryrefslogtreecommitdiffstats
path: root/.gitignore
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-02 11:21:10 +0100
commit2a998ccc0b0a60359a22ad20b26d753432de05ca (patch)
tree3fbf21c4594593a831cc3051205db98b3791d008 /.gitignore
parent3eae3fe238e55097bd46ac32516ab845c547a738 (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>
Diffstat (limited to '.gitignore')
-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