From 57f3cec6875e161bf65c168e0a8320e2f776f3a8 Mon Sep 17 00:00:00 2001 From: TJ Webb Date: Mon, 20 Jul 2026 13:52:10 -0700 Subject: [PATCH] chore: ignore local .worktrees/ directory Add .worktrees/ to .gitignore so contributors can use 'git worktree add .worktrees/' for parallel branch development without polluting git status or risking accidental commits of the worktree scaffolding. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 3ec03c657..33c88b523 100644 --- a/.gitignore +++ b/.gitignore @@ -47,3 +47,6 @@ code_puppy/bundled_skills/ .json .state/ + +# Local git worktrees for parallel PR development +.worktrees/