chore: add backend/uploads/ to gitignore and remove test data from git tracking

- Added backend/uploads/ to .gitignore
- Removed 171 test files from Git tracking (--cached, local files preserved)
  - Tool B: ~20 test files
  - Tool C: ~150 test files
- Local files are safe and not deleted
- This prevents future commits from tracking uploaded user files
This commit is contained in:
2025-12-10 18:12:00 +08:00
parent 200eab5c2e
commit 4b41344d78
172 changed files with 3 additions and 4293 deletions

3
.gitignore vendored
View File

@@ -48,6 +48,9 @@ tmp/
temp/
*.tmp
# Backend uploads (用户上传的文件不应提交到Git)
backend/uploads/
# ==================== Python ====================
# Virtual environments (重要!避免提交 2+ GB 的依赖)
venv/