chore: 添加 .venv 到 .gitignore 并忽略二进制日志文件

- 在 .gitignore 文件中添加 .venv/ 目录,以排除 Python 虚拟环境
- 忽略 TensorBoard 生成的二进制日志文件,避免将运行时数据提交到仓库
This commit is contained in:
2026-05-01 09:28:36 +08:00
parent 7dea00195e
commit 8f04be4617
2 changed files with 1 additions and 0 deletions
+1
View File
@@ -15,6 +15,7 @@ ehthumbs.db
__pycache__/ __pycache__/
*.py[cod] *.py[cod]
.env/ .env/
.venv/
# 编译输出 (如果有用到C/C++) # 编译输出 (如果有用到C/C++)
*.o *.o