删除__pycache__文件夹并更新.gitignore以忽略这些目录

This commit is contained in:
zhu-mengmeng 2025-06-16 09:10:36 +08:00
parent a1f9a56781
commit e638b7395d
14 changed files with 5 additions and 0 deletions

5
.gitignore vendored
View File

@ -11,6 +11,11 @@ __pycache__/
*.py[cod] *.py[cod]
*$py.class *$py.class
# 确保所有层级的__pycache__目录都被忽略
**/__pycache__/
*/__pycache__/
*/**/__pycache__/
# IDE相关 # IDE相关
.idea/ .idea/
.vscode/ .vscode/