diff options
author | Luca Corbatto <Ch33f@users.noreply.github.com> | 2015-03-01 10:13:43 +0100 |
---|---|---|
committer | Luca Corbatto <Ch33f@users.noreply.github.com> | 2015-03-01 10:13:43 +0100 |
commit | f4e43487f47fe550e8acb55e29ccc578b43b0792 (patch) | |
tree | 6963a957ad55c87c1830e40038156530043def5e | |
parent | 4a9d41f8947b9fe5850914abb7e59a59e1ae2cb6 (diff) | |
download | gitignore-f4e43487f47fe550e8acb55e29ccc578b43b0792.tar.gz gitignore-f4e43487f47fe550e8acb55e29ccc578b43b0792.zip |
Add "*.out" to Go.gitignore
The IDE LiteIDE creates a file named "cover.out" when using the go coverage tool for your tests.
-rw-r--r-- | Go.gitignore | 2 |
1 files changed, 2 insertions, 0 deletions
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 |