-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy path.gitignore
More file actions
99 lines (83 loc) · 972 Bytes
/
.gitignore
File metadata and controls
99 lines (83 loc) · 972 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
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
cremote_registry/
cyb_registry/
temp*
# 忽略操作系统生成的文件
init_model/
anna/
.vscode/
envs/
env/
tests/*
*.DS_Store
.DS_Store
._*
*.wav
raw/
local_registry/
cyb_dev_registry/
res/
log/
script/
raw_data/
tmp/
synthetic_data/
.run/
*.xlsx
# 忽略编辑器和IDE生成的文件
.idea/
*.sublime-workspace
*.sublime-project
*.swp
*.swo
# 忽略构建和编译生成的文件
__pycache__/
*.pyc
*.pyo
*.pyd
dist/
build/
*.egg-info/
node_modules/
*.log
*.tmp
*.bak
*.swp
# 忽略配置文件
*.env
# 忽略数据库文件
*.sqlite
*.sqlite3
*.db
# 忽略压缩文件
*.zip
*.tar
*.gz
*.bz2
*.7z
# 忽略临时文件
*.tmp
*.temp
# 忽略虚拟环境
venv/
env/
# 忽略测试生成的文件
coverage/
.coverage
# 忽略其他可能的敏感信息
*.pem
*.key
*.crt
*.p12
*.pfx
*.der
# 忽略其他可能的临时文件
*.log
*.out
*.pid
*.pid.lock
# 忽略其他可能的缓存文件
*.cache
*.tmp
# 忽略其他可能的备份文件
*.bak
*.old