From d50ac3fef943bcbc43ae0e00d65b15ee81defc0a Mon Sep 17 00:00:00 2001 From: Peanut Date: Sat, 21 Mar 2026 23:34:38 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=9B=B4=E6=96=B0.gitignore=20?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20Python=E3=80=81AI=20=E5=B7=A5=E5=85=B7?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E7=9B=AE=E5=BD=95=E7=AD=89=E5=BF=BD=E7=95=A5?= =?UTF-8?q?=E8=A7=84=E5=88=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) diff --git a/.gitignore b/.gitignore index cbb9da4..da8de89 100644 --- a/.gitignore +++ b/.gitignore @@ -313,3 +313,64 @@ application-local.yml.bak # Git worktrees .worktrees/ + +# ======================================== +# Python 相关 +# ======================================== +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +*.egg-info/ +.eggs/ +dist/ +*.pyc +.pytest_cache/ +.coverage +htmlcov/ + +# ======================================== +# 工具配置目录(各 AI 助手) +# ======================================== +.omc/ +.augment/ +.codebuddy/ +.cursor/ +.kiro/ +.opencode/ +.qoder/ +.specify/ +.trae/ +.claude/ + +# ======================================== +# 文档和计划文件 +# ======================================== +# 注意:plans 目录保留用于记录重要计划,临时 HTML 文件忽略 +*.html + +# ======================================== +# SQL 初始化文件(如不需要提交) +# ======================================== +sql/alter.sql +sql/create.sql +sql/init.sql + +# ======================================== +# Python 脚本(如为临时工具) +# ======================================== +deploy-openclaw.py +push_repo.py +update_repo.py +execute_sql.py +test_sql.py +check-https.sh + +# ======================================== +# 其他临时文件 +# ======================================== +*.md.bak +comparison-report.png +prototype-*.png +OpenClaw*.md