Add .gitignore and remove .pyc files from tracking

This commit is contained in:
Ziwei.He 2025-05-29 22:21:10 +08:00
parent e01e6452b4
commit 8477c29c5b
279 changed files with 26 additions and 0 deletions

26
.gitignore vendored Normal file
View File

@ -0,0 +1,26 @@
# 忽略 Python 缓存文件和编译文件
*.pyc
__pycache__/
# 忽略虚拟环境
venv/
.env/
.venv/
env/
# 忽略日志、临时文件
*.log
*.tmp
# 忽略 Jupyter 缓存
.ipynb_checkpoints/
# 忽略 VS Code 或 PyCharm 等 IDE 配置
.vscode/
.idea/
# 忽略构建目录
build/
dist/
*.egg-info/
.eggs/

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More