From f2dc5f742fe55bb278697abe953ae4c4d8873958 Mon Sep 17 00:00:00 2001 From: imjoey Date: Thu, 26 Sep 2019 10:26:23 +0800 Subject: [PATCH] Add a commonly-used gitignore for Go project Inspired by Go.gitignore in github/gitignore project Signed-off-by: imjoey --- .gitignore | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.gitignore b/.gitignore index 4da52ae..5e54594 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,17 @@ ci-bot +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out + +# Dependency directories (remove the comment below to include it) +# vendor/ -- Gitee