EdgexAgent/.gitignore
2025-07-10 21:24:53 +08:00

68 lines
815 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
# 如果你使用 systemd 或 snap 构建
*.snap
*.service
# git submodule lock如果有
.git/modules/
# GoReleaser可选
.release.yaml
# 忽略任何级res/下的编译文件
**/res/device*
# 每一次添加ignore项需要先清空本地缓存再ad
# git rm --cached -r .