-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
61 lines (56 loc) · 1.49 KB
/
.gitignore
File metadata and controls
61 lines (56 loc) · 1.49 KB
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
# =======================================================
# 1. Visual Studio 缓存与配置 (必须忽略)
# =======================================================
# .vs 文件夹包含大量临时数据库,绝对不能传
.vs/
# 用户个人的配置偏好 (如断点位置、窗口布局)
*.user
*.suo
*.db
*.opensdf
*.sdf
*.ipch
# =======================================================
# 2. 编译生成目录 (垃圾文件)
# =======================================================
# 忽略任何位置的 Debug, Release, x64, x86 文件夹
[Dd]ebug/
[Rr]elease/
x64/
x86/
build/
.vs/
# =======================================================
# 3. 编译产生的具体文件
# =======================================================
*.obj
*.exe
*.dll
*.pdb
*.ilk
*.log
*.tlog
*.idb
*.iobj
*.ipdb
*.exp
*.lib
*.res
# =======================================================
# 4. 操作系统临时文件
# =======================================================
Thumbs.db
Desktop.ini
.DS_Store
# =======================================================
# 5. 其他编辑器
# =======================================================
.vscode/
# =======================================================
# !!! 重要提示 !!!
# 下列文件 *不要* 写进来,因为它们是项目结构,必须提交:
# *.sln (解决方案入口)
# *.vcxproj (项目配置)
# *.vcxproj.filters (目录分类)
# *.c / *.h (源码)
# =======================================================