From 7db7be456c8a254925b201b2a0a8b5c3d6aea106 Mon Sep 17 00:00:00 2001 From: Yaojia Wang Date: Wed, 29 Jul 2026 11:14:12 +0200 Subject: [PATCH] chore: track .claude/settings.json for the worktree base ref MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `worktree.baseRef: head` is the setting CLAUDE.md's session workflow depends on: without it EnterWorktree defaults to `fresh` and branches from `origin/main`, which trails `develop` by ~75 commits. Shared config, so it belongs in the repo — personal overrides still go in the ignored `.claude/settings.local.json`. --- .claude/settings.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .claude/settings.json diff --git a/.claude/settings.json b/.claude/settings.json new file mode 100644 index 0000000..7538464 --- /dev/null +++ b/.claude/settings.json @@ -0,0 +1,5 @@ +{ + "worktree": { + "baseRef": "head" + } +}