← back to Age Theme Slider
gitignore: cover .bak / .pre-* snapshot artifacts
2412caceadca719d96cc4c6c7079cc65fcada18e · 2026-05-19 17:25:46 -0700 · Steve Abrams
Standing fleet rule — backup/snapshot files must never land in the
repo or be served from static root. Broadens the ignore globs so
casual `cp foo.js foo.js.bak` editing doesn't accidentally publish.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Files touched
Diff
commit 2412caceadca719d96cc4c6c7079cc65fcada18e
Author: Steve Abrams <steve@designerwallcoverings.com>
Date: Tue May 19 17:25:46 2026 -0700
gitignore: cover .bak / .pre-* snapshot artifacts
Standing fleet rule — backup/snapshot files must never land in the
repo or be served from static root. Broadens the ignore globs so
casual `cp foo.js foo.js.bak` editing doesn't accidentally publish.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
---
.gitignore | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/.gitignore b/.gitignore
index 1924158..b8fd6c1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,3 +6,8 @@ tmp/
dist/
build/
.next/
+# Snapshot / backup files — never commit, never serve
+*.bak
+*.bak.*
+*.pre-*
+.pre-*
← 9d7659c initial scaffold — standalone age theme slider on :9717
·
back to Age Theme Slider
·
server: 404-guard snapshot paths from static root 4d10ff5 →