[object Object]

← back to Watches

Broaden .gitignore: snapshot leftovers + SQLite WAL/SHM

253afbee9fe6b525d9c6957d645bc2882396fe41 · 2026-05-19 21:37:53 -0700 · Steve Abrams

Adds *.bak.*, *.pre-*, *.orig, *.rej plus SQLite WAL/SHM/journal so the
search FTS db's transient sidecar files don't show up as untracked.
*~ and *.swp already covered under IDE block above.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

Files touched

Diff

commit 253afbee9fe6b525d9c6957d645bc2882396fe41
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Tue May 19 21:37:53 2026 -0700

    Broaden .gitignore: snapshot leftovers + SQLite WAL/SHM
    
    Adds *.bak.*, *.pre-*, *.orig, *.rej plus SQLite WAL/SHM/journal so the
    search FTS db's transient sidecar files don't show up as untracked.
    *~ and *.swp already covered under IDE block above.
    
    Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
---
 .gitignore | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/.gitignore b/.gitignore
index 6156c7f..721cd37 100755
--- a/.gitignore
+++ b/.gitignore
@@ -47,4 +47,15 @@ temp/
 monitoring/grafana/data/
 monitoring/prometheus/data/
 .next/
+
+# Snapshot / editor leftovers
 *.bak
+*.bak.*
+*.pre-*
+*.orig
+*.rej
+
+# SQLite WAL/SHM transient files
+*.db-shm
+*.db-wal
+*.db-journal

← 08f02d6 Add sort + density slider with localStorage persistence to w  ·  back to Watches  ·  Add /api 404 guard before SPA catch-all 6aff506 →