Untrack accidentally-committed seed/data/app.db.bak

The CSP-revert commit ba5a5d9 picked up start9/0.4/seed/data/app.db.bak
because the gitignore only matched *.db, not *.db.bak. That file is the
prior live snapshot (1.6MB of real workout history + bcrypt'd password
hash) and must never be in version control.

git rm --cached removes it from the index; the file stays on disk.
.gitignore broadened to cover *.db.bak and *.bak under
start9/*/seed/data/ so this can't recur.

NOTE: the file is still in the previous commit. If this repo is ever
pushed to a public remote, run `git filter-repo --path
start9/0.4/seed/data/app.db.bak --invert-paths` (or BFG) to scrub
history first.
This commit is contained in:
Keysat
2026-05-09 12:05:42 -05:00
parent edeb1eb148
commit 32b855f25b

Diff Content Not Available