first commit
This commit is contained in:
57
.gitignore
vendored
Normal file
57
.gitignore
vendored
Normal file
@@ -0,0 +1,57 @@
|
||||
# 编译输出
|
||||
bin/
|
||||
*.exe
|
||||
*.exe~
|
||||
*.dll
|
||||
*.so
|
||||
*.dylib
|
||||
|
||||
# Go 测试输出
|
||||
*.test
|
||||
*.out
|
||||
|
||||
# Go 依赖模块
|
||||
go.work
|
||||
go.work.sum
|
||||
|
||||
# Go 构建缓存
|
||||
.cache/
|
||||
|
||||
# IDE 文件
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# macOS
|
||||
.DS_Store
|
||||
|
||||
# 日志文件
|
||||
*.log
|
||||
|
||||
# 临时文件
|
||||
*.tmp
|
||||
*.temp
|
||||
.tmp/
|
||||
|
||||
# 环境变量文件
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
|
||||
# 备份文件
|
||||
*.bak
|
||||
*.backup
|
||||
|
||||
# 编译器输出
|
||||
*.i*86
|
||||
*.x86_64
|
||||
*.hex
|
||||
|
||||
# Debug 文件
|
||||
debug
|
||||
debug.test
|
||||
main
|
||||
|
||||
# Vendor 目录 (如果使用 vendor)
|
||||
vendor/
|
||||
Reference in New Issue
Block a user