🚀 Program
GSSoC
🐛 Describe the bug
Two unrelated files were accidentally merged into main via PR #491 ("fix: preserve favorites history cap"): a 13MB binary file (largefile.bin) and a leftover PR description file (pr_body.md). Neither belongs in the repo and neither is referenced anywhere in the codebase.
🔁 Steps to Reproduce
- Clone the repo:
git clone https://github.com/itzzavdhesh/VoiceForge.git
- Look at the repo root
- See
largefile.bin and pr_body.md sitting there, unused
✅ Expected Behavior
The repo root should only contain files that are actually part of the project - source code, config, docs, etc. No stray binary blobs or leftover PR drafts.
❌ Actual Behavior
largefile.bin (13MB of random binary data) and pr_body.md (a PR description for an unrelated "auto-recloning recovery flow" feature) are tracked on main, adding unnecessary weight to every clone/fork with no functional purpose.
📸 Screenshots
N/A
🌱 Contributor Checklist
💻 Environment
- Browser: N/A
- Device: N/A
- OS: N/A
📝 Additional Context
Introduced by the merge commit for PR #491. Suggested fix: remove both files from main, and consider adding a pre-commit/CI check to catch stray large binary files in future PRs.
🚀 Program
GSSoC
🐛 Describe the bug
Two unrelated files were accidentally merged into
mainvia PR #491 ("fix: preserve favorites history cap"): a 13MB binary file (largefile.bin) and a leftover PR description file (pr_body.md). Neither belongs in the repo and neither is referenced anywhere in the codebase.🔁 Steps to Reproduce
git clone https://github.com/itzzavdhesh/VoiceForge.gitlargefile.binandpr_body.mdsitting there, unused✅ Expected Behavior
The repo root should only contain files that are actually part of the project - source code, config, docs, etc. No stray binary blobs or leftover PR drafts.
❌ Actual Behavior
largefile.bin(13MB of random binary data) andpr_body.md(a PR description for an unrelated "auto-recloning recovery flow" feature) are tracked onmain, adding unnecessary weight to every clone/fork with no functional purpose.📸 Screenshots
N/A
🌱 Contributor Checklist
💻 Environment
📝 Additional Context
Introduced by the merge commit for PR #491. Suggested fix: remove both files from
main, and consider adding a pre-commit/CI check to catch stray large binary files in future PRs.