-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
136 lines (122 loc) · 1.86 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# 忽略操作系统生成的文件
*.DS_Store
.DS_Store
._*
.Spotlight-V100
.Trashes
Thumbs.db
ehthumbs.db
# 忽略编译输出文件
*.class
*.pyc
*.o
*.obj
*.exe
*.dll
*.so
*.dylib
# 忽略IDE和编辑器生成的文件
.idea/
.vscode/
*.sublime-project
*.sublime-workspace
*.swp
*.swo
*.swn
# 忽略日志文件
*.log
logs/
# 忽略临时文件
*.tmp
*.temp
*.swp
# 忽略数据库文件
*.db
*.sqlite
*.sqlite3
# 忽略压缩文件
*.zip
*.tar
*.tar.gz
*.rar
*.7z
# 忽略构建输出目录
dist/
build/
out/
target/
# 忽略配置文件
*.conf
*.config
# 忽略敏感信息文件
*.env
*.secret
# 忽略虚拟环境目录
venv/
env/
# 忽略Node.js项目中的node_modules目录
node_modules/
# 忽略Python项目中的__pycache__目录
__pycache__/
# 忽略Docker容器和镜像文件
*.dockerignore
Dockerfile
docker-compose.yml
# 忽略其他常见文件和目录
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
.env.example
.env.sample
.env.template
.env.dist
.env.dev
.env.prod
.env.test
.env.staging
.env.local.example
.env.local.sample
.env.local.template
.env.local.dist
.env.local.dev
.env.local.prod
.env.local.test
.env.local.staging
.env.development
.env.development.example
.env.development.sample
.env.development.template
.env.development.dist
.env.development.dev
.env.development.prod
.env.development.test
.env.development.staging
.env.test
.env.test.example
.env.test.sample
.env.test.template
.env.test.dist
.env.test.dev
.env.test.prod
.env.test.test
.env.test.staging
.env.production
.env.production.example
.env.production.sample
.env.production.template
.env.production.dist
.env.production.dev
.env.production.prod
.env.production.test
.env.production.staging
.env.staging
.env.staging.example
.env.staging.sample
.env.staging.template
.env.staging.dist
.env.staging.dev
.env.staging.prod
.env.staging.test
.env.staging.staging