Skip to content

Commit 6bd94a5

Browse files
author
ieee0824
committed
add ignore
1 parent 8e30fd2 commit 6bd94a5

File tree

1 file changed

+62
-0
lines changed

1 file changed

+62
-0
lines changed

.gitignore

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
### Go ###
2+
# Binaries for programs and plugins
3+
*.exe
4+
*.dll
5+
*.so
6+
*.dylib
7+
8+
# Test binary, build with `go test -c`
9+
*.test
10+
11+
# Output of the go coverage tool, specifically when used with LiteIDE
12+
*.out
13+
14+
# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
15+
.glide/
16+
17+
# Golang project vendor packages which should be ignored
18+
vendor/
19+
20+
### macOS ###
21+
*.DS_Store
22+
.AppleDouble
23+
.LSOverride
24+
25+
# Icon must end with two \r
26+
Icon
27+
28+
# Thumbnails
29+
._*
30+
31+
# Files that might appear in the root of a volume
32+
.DocumentRevisions-V100
33+
.fseventsd
34+
.Spotlight-V100
35+
.TemporaryItems
36+
.Trashes
37+
.VolumeIcon.icns
38+
.com.apple.timemachine.donotpresent
39+
40+
# Directories potentially created on remote AFP share
41+
.AppleDB
42+
.AppleDesktop
43+
Network Trash Folder
44+
Temporary Items
45+
.apdisk
46+
47+
### Vim ###
48+
# swap
49+
[._]*.s[a-v][a-z]
50+
[._]*.sw[a-p]
51+
[._]s[a-v][a-z]
52+
[._]sw[a-p]
53+
# session
54+
Session.vim
55+
# temporary
56+
.netrwhist
57+
*~
58+
# auto-generated tag files
59+
tags
60+
61+
.idea
62+

0 commit comments

Comments
 (0)