From 8adeeeabe0738a797a1bdfc42c5176ea8ee627e4 Mon Sep 17 00:00:00 2001 From: Steve Dudenhoeffer Date: Wed, 12 Aug 2026 18:57:53 -0400 Subject: [PATCH] fix: drop the accidentally committed worktree gitlink, ignore .claude/worktrees MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The pin bump used `git add -A` from a checkout that had a git worktree under .claude/worktrees/, so the previous commit recorded it as a gitlink — a submodule pointer to a commit no clone can resolve. Removed, and .gitignore now covers the directory so it cannot recur. Co-Authored-By: Claude Opus 5 (1M context) --- .claude/worktrees/qwen | 1 - .gitignore | 3 +++ 2 files changed, 3 insertions(+), 1 deletion(-) delete mode 160000 .claude/worktrees/qwen diff --git a/.claude/worktrees/qwen b/.claude/worktrees/qwen deleted file mode 160000 index d8b023e..0000000 --- a/.claude/worktrees/qwen +++ /dev/null @@ -1 +0,0 @@ -Subproject commit d8b023efd673835f4f9f45f3290df0e37c8f1430 diff --git a/.gitignore b/.gitignore index e71ad75..cd2dfaf 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ /gadfly /out *.orig + +# Local worktrees created for agent work — never part of the repo. +.claude/worktrees/