chore: untrack personal/scratch files + gitignore (#207)#226
Open
mbachaud wants to merge 1 commit into
Open
Conversation
Remove .obsidian/ (personal Obsidian vault), overnight_logs/ (1.3MB of run logs), and scripts/.ingest_progress (1,847 lines of absolute workstation paths) from tracking and gitignore them. .ingest_progress in particular is a privacy leak. NOTE: this stops FUTURE tracking; the paths remain in git history -- scrubbing history requires git-filter-repo + a force-push (separate, opt-in).
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.
What
Untracks personal/scratch files that should never have been committed (#207) and gitignores them.
Removed from tracking:
.obsidian/? personal Obsidian vault configovernight_logs/? ~1.3 MB of run logsscripts/.ingest_progress? 1,847 lines of absolute workstation paths (privacy)Note on history
This stops future tracking. The files (incl. the private paths in
.ingest_progress) remain in git history ? a full scrub needsgit-filter-repo+ a force-push, which rewrites history and breaks existing clones/forks. Left as a separate, opt-in step.