chore: remove dev artifacts from repo root and update .gitignore#2308
chore: remove dev artifacts from repo root and update .gitignore#2308nyxsky404 wants to merge 1 commit into
Conversation
GSSoC Label Checklist 🏷️@Priyanshu-byte-coder — please apply the appropriate labels before merging: Difficulty (pick one):
Quality (optional):
Validation (required to score):
|
|
@nyxsky404 is attempting to deploy a commit to the PRIYANSHU DOSHI's projects Team on Vercel. A member of the Team first needs to authorize it. |
|
The CI failures on this PR (Playwright smoke tests and Playwright visual regression) are pre-existing broken tests on Root causes fixed:
Fixes have been applied to this branch. CI is Green. |
|
This PR has merge conflicts with the current git fetch origin main
git merge origin/main
# resolve conflicts
git push |
Four scratch files were accidentally committed in commit 4b27bbc and were not cleaned up by the subsequent chore commit e2ec6ab: - temp.tsx (22 KB UTF-16 scratch file) - pr.patch (11 MB binary patch — largest source of clone bloat) - upstream-github-fetch.ts (11 KB dev scratch file) - screenshot.png (91 KB, unreferenced in any docs) None of these files are imported or referenced anywhere in the project source. pr.patch alone added 11 MB to the clone size for every contributor. .gitignore is updated with patterns to prevent recurrence: *.patch, temp.*, upstream-*.ts, screenshot.png Fixes Umbrella-io#2304
50df54d to
c41137a
Compare
Summary
Four development scratch files were accidentally committed in
4b27bbc7and were missed by the subsequent cleanup commite2ec6ab0. This PR removes the remaining files and updates.gitignoreto prevent the same class of accident from recurring.Closes #2304
Type of Change
What Changed
Files removed from repo root:
pr.patchtemp.tsxupstream-github-fetch.tsscreenshot.png.gitignoreadditions (to prevent recurrence):None of the removed files are referenced in any source file, README, or documentation — confirmed with a full project-wide grep before removal.
How to Test
git clone https://github.com/Priyanshu-byte-coder/devtrack.git ls temp.tsx pr.patch upstream-github-fetch.ts screenshot.png # Expected: ls: cannot access — files do not existAlso confirm the app builds normally — none of these files were part of any import graph.
Checklist
.gitignorepatterns are specific and won't accidentally exclude real project files