From 0036d5911b7d8e264e272b73f4811ef57362159b Mon Sep 17 00:00:00 2001 From: Kris <2893855659@qq.com> Date: Tue, 7 Jul 2026 18:50:11 +0800 Subject: [PATCH] chore(gitignore): add python cache related ignore rules MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 补充Python缓存文件、编译产物以及egg相关包的忽略规则,避免将这些文件提交到代码仓库 --- .gitignore | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitignore b/.gitignore index 6ce3456..70b9819 100644 --- a/.gitignore +++ b/.gitignore @@ -141,3 +141,11 @@ dist /data-panel/ /.claude .DS_Store + +# Python cache +__pycache__/ +*.py[cod] +*$py.class +*.so +*.egg-info/ +*.egg