chore: 清理 Python 运行产物并忽略

- 从仓库移除 __pycache__/ 与 *.pyc 等运行产物,避免 git pull 覆盖未跟踪文件导致合并失败
- 在 .gitignore 增加 Python 运行产物忽略规则
This commit is contained in:
吕新雨
2026-02-02 16:52:22 +08:00
parent 3587a24115
commit d045237952
58 changed files with 4 additions and 0 deletions

4
.gitignore vendored
View File

@@ -4,6 +4,10 @@
.DS_Store
*.pem
# Python运行产物
__pycache__/
*.py[cod]
# Node / JS
node_modules/
npm-debug.*