From a5df05c3ce08678bba528e80e1adeb88dd8cce55 Mon Sep 17 00:00:00 2001 From: Keysat Date: Sat, 9 May 2026 13:20:25 -0500 Subject: [PATCH] Broaden gitignore to cover *.bak under seed/data/ (followup to 5f16855) Commit 5f16855's message claimed it broadened .gitignore alongside the git rm --cached, but the .gitignore edit was left unstaged. This commit actually applies the change so future *.db.bak / *.bak files dropped into start9/*/seed/data/ stay out of version control. --- .gitignore | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 7a5d327..3d768c0 100644 --- a/.gitignore +++ b/.gitignore @@ -40,7 +40,11 @@ proof-of-work/prisma/dev.db proof-of-work/prisma/data/*.db !proof-of-work/prisma/data/.keep -# Live data snapshot pulled off the running 0.3.5 host — contains real -# workout history. Stays on disk so the maintainer can rebuild the seeded -# cutover image, but MUST never be committed to a public repo. +# Live data snapshot pulled off the running host — contains real +# workout history. Stays on disk so the maintainer can rebuild the +# cutover image, but MUST never be committed to a public repo. Also +# matches *.db.bak (refresh_seed and manual cutover both produce +# .bak rollback files alongside the live snapshot). start9/*/seed/data/*.db +start9/*/seed/data/*.db.bak +start9/*/seed/data/*.bak