From 1078732ce4fbcb198ff437b88af3cc9a83885731 Mon Sep 17 00:00:00 2001 From: enricobuehler Date: Sun, 9 Aug 2026 17:41:55 +0200 Subject: [PATCH] chore: ignore .claude/ Claude Code sessions create their worktrees under .claude/worktrees/ in whichever repo they are working in, so the directory showed up as untracked in every git status. punktfunk already ignores it; this brings the other repos in line. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 941fafe..61424bd 100644 --- a/.gitignore +++ b/.gitignore @@ -33,3 +33,6 @@ report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json # Finder (MacOS) folder config .DS_Store + +# Claude Code scratch space: session worktrees live in .claude/worktrees/ +.claude/ -- 2.54.0