From e062fc167e4c2fce2b04a69ce0f0caa4963ba811 Mon Sep 17 00:00:00 2001 From: enricobuehler Date: Sun, 9 Aug 2026 17:41:58 +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 5ece558..c4d6131 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,6 @@ dist storybook-static *storybook.log .DS_Store + +# Claude Code scratch space: session worktrees live in .claude/worktrees/ +.claude/ -- 2.54.0