From bdd6707dc568258d3e3e8e1eee53dd6d277d4bd5 Mon Sep 17 00:00:00 2001 From: Matt Ames Date: Mon, 7 Dec 2020 16:59:13 +1100 Subject: [PATCH] Add in sensible .gitignore that excludes build artifacts and python bytecode files --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..dc4d0ae --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +# ignore build artifacts and .pyc compiled python bytecode files +build/ +*.pyc \ No newline at end of file