-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
64 lines (52 loc) · 936 Bytes
/
Copy path.gitignore
File metadata and controls
64 lines (52 loc) · 936 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# TunnelBridge .gitignore
# 二进制文件和编译产物(仅根目录,避免误伤 cmd/tunnelbridge/ 源码目录)
/tunnelbridge
/tunnelbridge.exe
/tunnelbridge.exe~
*.exe
*.exe~
*.dll
*.so
*.dylib
# Release 目录(预编译二进制,通过 GitHub Releases 分发)
/release/
# Go 测试和覆盖率
*.test
*.out
/cover
/cover.out
coverage.txt
# 日志文件
/logs/
*.log
*.err
# 测试输出文件(保留脚本和源码,排除运行时产物)
/test/logs/
/test/*.log
/test/*.err
/test/*.json
/test/*.txt
/test/*.out
/test/*.snapshot
# 测试用编译产物
/test/testserver/testserver.exe
/test/wsclient/wsclient.exe
# Autocert 证书缓存
.autocert/
# IDE 和编辑器
.vscode/
.idea/
*.swp
*.swo
*~
# 操作系统文件
.DS_Store
Thumbs.db
desktop.ini
# Docker 持久化数据
data/
# 临时文件
*.tmp
*.bak
# 内部规划文档(不发布到仓库)
TunnelBridge_产品规划文档_v1.0_Final.md