chore: gitignore local build and run cruft#29
Draft
ohad6k wants to merge 1 commit into
Draft
Conversation
Five paths kept showing up as untracked noise in the working tree. All
are regenerable output from local tooling, none are wanted artifacts:
- .cache/ npm _cacache/_logs/_npx, puppeteer browser downloads,
extracted video frames and captured screenshots
- .voice-venv/ isolated interpreter built by the voice-clone engine
- /out.txt stray shell redirects from local CLI runs; anchored to
- /error.log the repo root so nested files of these names still track
- proof-run/ ad-hoc dated A/B render runs (out-a/out-b, compare.html)
app_assets/ is deliberately left untracked-but-not-ignored: it holds
source artwork rather than disposable output, so that call is Ohad's.
Verified: git ls-files -i -c --exclude-standard is empty, so no
currently tracked file became ignored.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Ignores five kinds of local cruft that were showing as untracked noise:
.voice-venv/,.cache/,proof-run/, and root-anchored/out.txtand/error.log.out.txtanderror.logare anchored to the repo root on purpose, so a legitimatedocs/out.txtortests/error.logwould still be tracked.Deliberately left out:
app_assets/. It is 76 MB of PNGs, nothing in the tracked source references it, and nothing regenerates it. Ignoring it would silently hide the only copy. It needs a decision: ignore it, commit it, or move it out of the repo.Verification
git ls-files -i -c --exclude-standardis empty, so nothing already tracked became ignored.git check-ignore -v, and deleting it again.app_assets,docs/out.txt,tests/error.log) correctly do not match.Written by an agent working in an isolated worktree, reviewed before push.