EdgexAgent/.gitignore
2025-07-10 20:40:32 +08:00

67 lines
853 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 二进制输出
/bin/
/build/
/dist/
*.exe
*.out
*.dll
*.so
*.dylib
# Go 构建缓存
*.test
*.prof
*.coverprofile
*.cov
# Go module & vendor可选
/vendor/
# 临时文件
*.log
*.tmp
*.swp
*~
.DS_Store
# IDE/editor
.vscode/
.idea/
*.code-workspace
# 编译中间目录(如 Makefile
obj/
tmp/
.cache/
*.a
# 覆盖报告 & 测试输出
coverage.*
*.lcov
*.gcov
*.gcda
*.gcno
# Ginkgo test artifacts
.ginkgo
# Docker 编排遗留数据
docker-compose.override.yml
docker-compose.override.local.yml
# EdgeX specific
/res/configuration.toml
/cmd/res/configuration.toml
/cmd/res/devices/* # 本地调试生成的设备实例
/cmd/res/profiles/* # 生成的设备Profile可选忽略
# 如果你使用 systemd 或 snap 构建
*.snap
*.service
# git submodule lock如果有
.git/modules/
# GoReleaser可选
.release.yaml