[object Object]

← back to Wallco Ai

chore(gitignore): ignore timestamped *.bak.* runtime backups

52f07a55c76460b71e0a1f7adab0b3764b377eeb · 2026-05-29 08:03:04 -0700 · Steve Abrams

designs.json.bak.<digits> files (written by the snapshot-refresh + mockup-queue
auto-refresh) ended in .<digits> not .bak, so neither *.bak nor *.bak-* caught
them and they cluttered git status. Add *.bak.* to cover the pattern.

Files touched

Diff

commit 52f07a55c76460b71e0a1f7adab0b3764b377eeb
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Fri May 29 08:03:04 2026 -0700

    chore(gitignore): ignore timestamped *.bak.* runtime backups
    
    designs.json.bak.<digits> files (written by the snapshot-refresh + mockup-queue
    auto-refresh) ended in .<digits> not .bak, so neither *.bak nor *.bak-* caught
    them and they cluttered git status. Add *.bak.* to cover the pattern.
---
 .gitignore | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.gitignore b/.gitignore
index 960bad6..a8026ca 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,6 +10,8 @@ build/
 # backup variants (e.g. .bak-ai-rename, .bak-vendor-scrub) — plain *.bak alone misses these
 *.bak
 *.bak-*
+# timestamped runtime backups (e.g. designs.json.bak.1780023441) — .bak.<digits>, not caught above
+*.bak.*
 # pre-operation snapshots (e.g. *.pre-dedupe-..., *.pre-vendor-filter)
 *.pre-*
 # python bytecode

← ccbd1fb feat(mockup-queue): auto-refresh designs.json + hot-reload s  ·  back to Wallco Ai  ·  docs: Digital Downloads app delivery runbook (chosen over we 84a88cf →