From cd1ef5cda2222af2cc533e62a6108d59a12161e0 Mon Sep 17 00:00:00 2001 From: DongHyeonka Date: Mon, 17 Aug 2026 18:38:27 +0900 Subject: [PATCH] chore: ignore in-repository git worktrees .worktrees/ showed as untracked in main's status, so a worktree checkout could be committed into the repository by an ordinary 'git add -A'. Co-Authored-By: Claude Opus 5 (1M context) --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 283de97..db5b8db 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,7 @@ artifacts/tests/visual/ .env .env.* !.env.example + +# Git worktrees created inside the repository. A worktree is a checkout, not +# source: committing one would nest a second working copy inside this one. +.worktrees/