24 lines
551 B
Plaintext
24 lines
551 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
|
||
|
||
# 根目录下自动化任务写出的一次性探测报告(如唤醒能力探测 _wol.txt)
|
||
/_*.txt
|
||
|
||
# 依赖与构建产物
|
||
node_modules/
|
||
dist/
|
||
build/
|