-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
73 lines (60 loc) · 870 Bytes
/
.gitignore
File metadata and controls
73 lines (60 loc) · 870 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
# Ansible 敏感信息
# ===================
# 密码文件
.vault_pass
vault_pass.txt
secrets.yml
# 包含密码的配置文件
host.ini
host.ini.backup
host.ini.prod
host.ini.staging
# SSH 密钥文件(如果意外复制到项目中)
*.pem
*.key
id_rsa*
*.pub
# Ansible 运行时文件
# ===================
# 重试文件
*.retry
# Ansible 缓存
.ansible/
# 临时文件
# ===================
# 系统临时文件
.DS_Store
Thumbs.db
# 编辑器临时文件
*~
*.swp
*.swo
.vscode/
.idea/
# 备份文件
*.bak
*.backup
*.orig
# 日志文件
# ===================
ansible.log
*.log
# 环境文件
# ===================
.env
.env.local
.env.prod
.env.staging
# 用户自定义文件
# ===================
# 个人配置文件
.zshrc.personal
config.local.yml
# 测试文件
test_*
debug_*
# 文档临时文件
# ===================
*.tmp
*.temp
.idea/