-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
78 lines (60 loc) · 1.14 KB
/
.gitignore
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# MacOS系统生成的文件
.DS_Store
.AppleDouble
.LSOverride
# MacOS文件的特殊属性
*.swp
._*
# MacOS生成的文件预览图标
Thumbs.db
Desktop.ini
# Go相关的文件和目录
# 编译后的二进制文件
*.exe
*.exe~
*.dll
*.so
*.dylib
*.test
# 依赖包(如果你使用 Go modules, 你不需要忽略vendor/)
vendor/
# Go的缓存和临时文件
*.log
*.out
# Go modules
/go/pkg/mod/*
/go/bin/*
# Go test coverage files
*.coverprofile
*.cov
*.out
# 如果使用的编辑器生成特定文件,比如 VS Code、JetBrains、Sublime
# VS Code
.vscode/
.vscode/*
# JetBrains IDEs (GoLand, IntelliJ IDEA, etc.)
.idea/
*.iml
# Sublime Text
*.sublime*
# 如果使用 Docker
docker-compose.override.yml
#Dockerfile
.dockerignore
# 如果使用 Node.js 或其他前端依赖
node_modules/
npm-debug.log
yarn-error.log
# 本地环境变量文件,如 dotenv
#.env
# 如果使用数据库文件
*.db
*.sqlite3
# Coverage 文件
coverage.out
# 可忽略的锁文件(Go modules通常不需要忽略go.sum文件)
# go.sum
# 如果使用 Twilio 或其他第三方库的配置文件
twilio-debug.log
# Go工具生成的临时文件
*.test