From 4a515a133a469c344b156e41e14614bbf6908c41 Mon Sep 17 00:00:00 2001 From: openclaw-314 Date: Tue, 1 Sep 2026 16:22:16 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BF=BD=E7=95=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 51 ++++++++++++++++++++++++++++++++------------------- 1 file changed, 32 insertions(+), 19 deletions(-) diff --git a/.gitignore b/.gitignore index 9a125c4..dffece5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,42 +1,55 @@ -# SQLite 数据库 +# ========== SQLite 数据库 ========== *.sqlite *.sqlite-shm *.sqlite-wal -# 会话数据 +# ========== 会话和运行时数据 ========== agents/*/sessions/ devices/ +state/ +session-sqlite-migration-runs/ +stability/ +backups/ +worktrees/ -# 敏感配置 +# ========== 敏感配置 ========== exec-approvals.json +credentials/ +.env +docker-proxy.env -# 日志 +# ========== 日志和临时文件 ========== logs/ npm/ sandboxes/ +cache/ +tmp/ +media/ +canvas/ +completions/ -# 环境变量密钥文件(.env) -.env - -# Docker 代理密钥文件 -docker-proxy.env - -# 备份文件 +# ========== 备份文件 ========== *.bak* *.clobbered.* *.last-good *.pre-* -# 系统文件 +# ========== 工作区临时文件 ========== +workspace-*/.cache/ +workspace-*/.tmp/ +workspace-*/node_modules/ + +# ========== IDE 和系统文件 ========== .DS_Store Thumbs.db - -# node_modules -node_modules/ - +.vscode/ +.idea/ __pycache__/ -cache/ -tmp/ - +# ========== node_modules ========== +node_modules/ +# ========== 压缩包 ========== +*.zip +*.tar.gz +*.tgz \ No newline at end of file