From eb8240bdae2c81b069249af5d30dea8a9da47c9e Mon Sep 17 00:00:00 2001 From: Yuriy Andamasov Date: Tue, 28 Jul 2026 03:36:43 +0300 Subject: chore: ignore Claude Code local settings and git worktrees MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `.claude/settings.local.json` can hold local secrets and must never be committable on a build branch; `.worktrees/` is local scratch space. Both ignore blocks already exist on `rolling`; `circinus` was missing them. Additive only — no existing line is removed or reordered, and the resulting file is byte-identical to rolling's `.gitignore`. --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index 83e7b781..5df91786 100644 --- a/.gitignore +++ b/.gitignore @@ -33,3 +33,9 @@ docs/superpowers/ # os specific .DS_Store + +# claude code local settings (may contain secrets) +.claude/settings.local.json + +# git worktrees +.worktrees/ -- cgit v1.2.3