diff --git a/.gitignore b/.gitignore index a5c618e..f519ba1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,23 +1,36 @@ -# ---> Go -# If you prefer the allow list template instead of the deny list, see community template: -# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore -# -# Binaries for programs and plugins +# 编译的二进制文件 +sysmonitord # 主程序 +test # 测试程序 + +# 构建目录 +bin/ +build/ +dist/ +output/ + +# Go特定文件 *.exe -*.exe~ -*.dll -*.so -*.dylib - -# Test binary, built with `go test -c` *.test - -# Output of the go coverage tool, specifically when used with LiteIDE *.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 \ No newline at end of file diff --git a/sysmonitord b/sysmonitord deleted file mode 100644 index eff9781..0000000 Binary files a/sysmonitord and /dev/null differ