21 lines
446 B
Plaintext
21 lines
446 B
Plaintext
# 工作空间 .gitignore
|
|
|
|
# ⚠️ 私钥/敏感文件(严禁入库)
|
|
/CentOS.pem
|
|
~/.ssh/xpcool_ed25519*
|
|
|
|
# 日志与系统临时
|
|
*.log
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# .workbuddy/tmp 下的一次性探测输出与对比文件(保留在磁盘,不入库)
|
|
# 注意:同目录的 .sh / .ps1 / .py / .js / .conf / .yaml 是留档脚本,仍正常入库
|
|
.workbuddy/tmp/*.txt
|
|
.workbuddy/tmp/*.diff
|
|
|
|
# 依赖与构建产物
|
|
node_modules/
|
|
dist/
|
|
build/
|