From 4e3a5fe18061ae03b80dfd59acddfbfee6b551e5 Mon Sep 17 00:00:00 2001 From: Michal Rostecki Date: Tue, 27 Nov 2018 17:28:19 +0100 Subject: [PATCH] Add .gitignore file Prevent tracking of binary outputs, GOPATH and test outputs. Signed-off-by: Michal Rostecki --- .gitignore | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..35c2a9ad9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +# Binary output dir +bin/ + +# GOPATH created by the build script +gopath/ + +# Test outputs +*.out +*.test