diff options
author | Aaron Buchwald <[email protected]> | 2020-11-13 15:20:30 -0500 |
---|---|---|
committer | Aaron Buchwald <[email protected]> | 2020-11-13 15:20:30 -0500 |
commit | 80b55a2a29df46b126ec531878f5c889eda916f4 (patch) | |
tree | a345a843f9b103e4808710e0c7885ad16fb8aa5a /.gitignore | |
parent | 905f16998bbf5d465a8736d2eaed9344191a012a (diff) |
Add to gitignore
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 47 |
1 files changed, 47 insertions, 0 deletions
@@ -1 +1,48 @@ ./main + +*.log +*~ +.DS_Store + +awscpu + +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib +*.profile + +# Test binary, build with `go test -c` +*.test + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out + +# ignore GoLand metafiles directory +.idea/ + +*logs/ + +.vscode* + +*.pb* + +db* + +*cpu[0-9]* +*mem[0-9]* +*lock[0-9]* +*.profile +*.swp +*.aux +*.fdb* +*.fls +*.gz +*.pdf + +.coverage + +bin/ +build/ |