[object Object]

← back to Secrets Manager

gitignore: add patterns for backup/scratch files (*.bak, *.bak-*, *.pre-*, *.orig etc)

a1e5d79c3096c38e1487132da1afd7dbe9978076 · 2026-05-31 00:03:29 -0700 · SteveStudio2

Prevents future accidental commits of routes.json.bak-* and similar
temporary backup files that the secrets-manager tooling generates during
key rotations and audits.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

Files touched

Diff

commit a1e5d79c3096c38e1487132da1afd7dbe9978076
Author: SteveStudio2 <stevestudio2@SteveStacStudio.lan>
Date:   Sun May 31 00:03:29 2026 -0700

    gitignore: add patterns for backup/scratch files (*.bak, *.bak-*, *.pre-*, *.orig etc)
    
    Prevents future accidental commits of routes.json.bak-* and similar
    temporary backup files that the secrets-manager tooling generates during
    key rotations and audits.
    
    Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
---
 .gitignore | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/.gitignore b/.gitignore
index eb030d7..55cb7b6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -30,3 +30,14 @@ build/
 
 # Standing-rule additions (2026-05-07)
 tmp/
+
+# backup / scratch files — never commit these
+*.bak
+*.bak-*
+*.pre-*
+*.orig
+*.save
+*.old
+*~
+copy-of-*
+*.over-narrowed-*

← ed8feec chore: sync registry + routes  ·  back to Secrets Manager  ·  durable daily post-bubbe Tier-1 secret-rotation reminder 89bebba →