chore: 清理构建文件和更新gitignore
- 移除编译的二进制文件 - 更新.gitignore忽略编译输出 - 保持仓库清洁
This commit is contained in:
parent
e6d4a8303c
commit
12be6dde33
|
|
@ -1,23 +1,36 @@
|
||||||
# ---> Go
|
# 编译的二进制文件
|
||||||
# If you prefer the allow list template instead of the deny list, see community template:
|
sysmonitord # 主程序
|
||||||
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
|
test # 测试程序
|
||||||
#
|
|
||||||
# Binaries for programs and plugins
|
# 构建目录
|
||||||
|
bin/
|
||||||
|
build/
|
||||||
|
dist/
|
||||||
|
output/
|
||||||
|
|
||||||
|
# Go特定文件
|
||||||
*.exe
|
*.exe
|
||||||
*.exe~
|
|
||||||
*.dll
|
|
||||||
*.so
|
|
||||||
*.dylib
|
|
||||||
|
|
||||||
# Test binary, built with `go test -c`
|
|
||||||
*.test
|
*.test
|
||||||
|
|
||||||
# Output of the go coverage tool, specifically when used with LiteIDE
|
|
||||||
*.out
|
*.out
|
||||||
|
*.prof
|
||||||
|
|
||||||
# Dependency directories (remove the comment below to include it)
|
# 依赖
|
||||||
# vendor/
|
vendor/
|
||||||
|
|
||||||
# Go workspace file
|
# 开发环境
|
||||||
go.work
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
*.code-workspace
|
||||||
|
|
||||||
|
# 临时文件
|
||||||
|
tmp/
|
||||||
|
*.tmp
|
||||||
|
*.log
|
||||||
|
|
||||||
|
# 配置文件(不提交个人配置)
|
||||||
|
config.local.yaml
|
||||||
|
.env
|
||||||
|
.env.local
|
||||||
|
|
||||||
|
# 系统文件
|
||||||
|
.DS_Store
|
||||||
BIN
sysmonitord
BIN
sysmonitord
Binary file not shown.
Loading…
Reference in New Issue
Block a user