← back to Auto Deploy Watcher
gitignore: cover snapshot/backup file patterns
b22f24113f8ee4e94857440180a77352d71e7945 · 2026-05-19 17:27:33 -0700 · SteveStudio2
Add *.bak, *.bak.*, *.pre-*, *.orig, *.rej so future tooling that
drops snapshot files (codemods, in-place editors, merge conflicts)
can't accidentally leak them into the repo.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Files touched
Diff
commit b22f24113f8ee4e94857440180a77352d71e7945
Author: SteveStudio2 <steve@designerwallcoverings.com>
Date: Tue May 19 17:27:33 2026 -0700
gitignore: cover snapshot/backup file patterns
Add *.bak, *.bak.*, *.pre-*, *.orig, *.rej so future tooling that
drops snapshot files (codemods, in-place editors, merge conflicts)
can't accidentally leak them into the repo.
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 9ae81e0..26177e7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -23,3 +23,8 @@ venv/
*.swp
.qodo/
out/
+*.bak
+*.bak.*
+*.pre-*
+*.orig
+*.rej
← 92cb533 initial snapshot — gitify all builds (CLAUDE.md rule 2026-05
·
back to Auto Deploy Watcher
·
server: 404-guard snapshot/backup file paths 0274af0 →