You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
995 B
84 lines
995 B
tmp
|
|
.env
|
|
gohub
|
|
.DS_Store
|
|
.history
|
|
|
|
# Golang #
|
|
######################
|
|
# `go test -c` 生成的二进制文件
|
|
*.test
|
|
# go coverage 工具
|
|
*.out
|
|
*.prof
|
|
*.cgo1.go
|
|
*.cgo2.c
|
|
_cgo_defun.c
|
|
_cgo_gotypes.go
|
|
_cgo_export.*
|
|
|
|
# 编译文件 #
|
|
###################
|
|
*.com
|
|
*.class
|
|
*.dll
|
|
*.exe
|
|
*.exe~
|
|
*.o
|
|
*.so
|
|
|
|
# 压缩包 #
|
|
############
|
|
# Git 自带压缩,如果这些压缩包里有代码,建议解压后 commit
|
|
*.7z
|
|
*.dmg
|
|
*.gz
|
|
*.iso
|
|
*.jar
|
|
*.rar
|
|
*.tar
|
|
*.zip
|
|
|
|
# 日志文件和数据库 #
|
|
######################
|
|
*.log
|
|
*.sqlite
|
|
*.db
|
|
|
|
# 临时文件 #
|
|
######################
|
|
tmp/
|
|
.tmp/
|
|
|
|
# 系统生成文件 #
|
|
######################
|
|
.DS_Store
|
|
.DS_Store?
|
|
.AppleDouble
|
|
.LSOverride
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
.TemporaryItems
|
|
.fseventsd
|
|
.VolumeIcon.icns
|
|
.com.apple.timemachine.donotpresent
|
|
|
|
# IDE 和编辑器 #
|
|
######################
|
|
.idea/
|
|
/go_build_*
|
|
out/
|
|
.vscode/
|
|
.vscode/settings.json
|
|
*.sublime*
|
|
__debug_bin
|
|
.project
|
|
|
|
# 前端工具链 #
|
|
######################
|
|
.sass-cache/*
|
|
node_modules/
|