Skip to content

Commit 096ce5c

Browse files
committed
Add .gitignore
Added `.gitignore` created by [gitignore.io](https://github.com/toptal/gitignore.io)
1 parent 0bae082 commit 096ce5c

File tree

1 file changed

+74
-0
lines changed

1 file changed

+74
-0
lines changed

.gitignore

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/go,macos,git
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=go,macos,git
3+
4+
### Git ###
5+
# Created by git for backups. To disable backups in Git:
6+
# $ git config --global mergetool.keepBackup false
7+
*.orig
8+
9+
# Created by git when using merge tools for conflicts
10+
*.BACKUP.*
11+
*.BASE.*
12+
*.LOCAL.*
13+
*.REMOTE.*
14+
*_BACKUP_*.txt
15+
*_BASE_*.txt
16+
*_LOCAL_*.txt
17+
*_REMOTE_*.txt
18+
19+
### Go ###
20+
# If you prefer the allow list template instead of the deny list, see community template:
21+
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
22+
#
23+
# Binaries for programs and plugins
24+
*.exe
25+
*.exe~
26+
*.dll
27+
*.so
28+
*.dylib
29+
30+
# Test binary, built with `go test -c`
31+
*.test
32+
33+
# Output of the go coverage tool, specifically when used with LiteIDE
34+
*.out
35+
36+
# Dependency directories (remove the comment below to include it)
37+
# vendor/
38+
39+
# Go workspace file
40+
go.work
41+
42+
### macOS ###
43+
# General
44+
.DS_Store
45+
.AppleDouble
46+
.LSOverride
47+
48+
# Icon must end with two \r
49+
Icon
50+
51+
# Thumbnails
52+
._*
53+
54+
# Files that might appear in the root of a volume
55+
.DocumentRevisions-V100
56+
.fseventsd
57+
.Spotlight-V100
58+
.TemporaryItems
59+
.Trashes
60+
.VolumeIcon.icns
61+
.com.apple.timemachine.donotpresent
62+
63+
# Directories potentially created on remote AFP share
64+
.AppleDB
65+
.AppleDesktop
66+
Network Trash Folder
67+
Temporary Items
68+
.apdisk
69+
70+
### macOS Patch ###
71+
# iCloud generated files
72+
*.icloud
73+
74+
# End of https://www.toptal.com/developers/gitignore/api/go,macos,git

0 commit comments

Comments
 (0)