From ccc12ab2639d8e2624b75b566c781d41ea3282e1 Mon Sep 17 00:00:00 2001 From: Charlie Drage Date: Tue, 13 Jun 2017 13:48:07 -0400 Subject: [PATCH] Add .gitignore --- .gitignore | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..95c28fa67 --- /dev/null +++ b/.gitignore @@ -0,0 +1,59 @@ +# +# PROJECT SPECIFIC +# + +# Ignore compiled Kompose files +opencompositor + +# +# GO SPECIFIC +# + +# Compiled Object files, Static and Dynamic libs (Shared Objects) +*.o +*.a +*.so + +# Folders +_obj +_test + +# Architecture specific extensions/prefixes +*.[568vq] +[568vq].out + +*.cgo1.go +*.cgo2.c +_cgo_defun.c +_cgo_gotypes.go +_cgo_export.* + +_testmain.go + +*.exe +*.test +*.prof + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out + +# +# VIM SPECIFIC +# + +# swap +[._]*.s[a-w][a-z] +[._]s[a-w][a-z] + +# session +Session.vim + +# temporary +.netrwhist +*~ + +# auto-generated tag files +tags + +# IntelliJ IDE specific +.idea