From f4e43487f47fe550e8acb55e29ccc578b43b0792 Mon Sep 17 00:00:00 2001 From: Luca Corbatto Date: Sun, 1 Mar 2015 10:13:43 +0100 Subject: [PATCH 1/2] Add "*.out" to Go.gitignore The IDE LiteIDE creates a file named "cover.out" when using the go coverage tool for your tests. --- Go.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Go.gitignore b/Go.gitignore index daf913b1..c2184b00 100644 --- a/Go.gitignore +++ b/Go.gitignore @@ -22,3 +22,5 @@ _testmain.go *.exe *.test *.prof + +*.out From 3e8be298da1e4bc377c0a54f527437376820a232 Mon Sep 17 00:00:00 2001 From: Luca Corbatto Date: Wed, 11 May 2016 16:05:23 +0200 Subject: [PATCH 2/2] Added comment to *.out entry --- Go.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Go.gitignore b/Go.gitignore index c2184b00..cd0d5d1e 100644 --- a/Go.gitignore +++ b/Go.gitignore @@ -23,4 +23,5 @@ _testmain.go *.test *.prof +# Output of the go coverage tool, specifically when used with LiteIDE *.out