From 32b855f25badf06124aa62d54a9342c78a3ede37 Mon Sep 17 00:00:00 2001 From: Keysat Date: Sat, 9 May 2026 12:05:42 -0500 Subject: [PATCH] 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.