fix: checkout existing branch no longer results in detached HEAD#58
Merged
fix: checkout existing branch no longer results in detached HEAD#58
Conversation
avihut
added a commit
that referenced
this pull request
Jan 24, 2026
* fix: checking out existing branch in worktree is no more detached head * fix: worktree-clone now properly sets remote tracking By setting the refspect properly * fix: master tracks origin properly on clone
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
git-worktree-checkoutchecking out branches in detached HEAD mode instead of properly on the branchgit-worktree-clonenot setting up fetch refspec, which prevented upstream tracking from workinggit-worktree-clonenot setting upstream tracking for the default branch after cloneRoot Causes
origin/branchas the checkout ref when a remote branch existed, which Git treats as a commit-ish rather than a branch namegit clone --baredoesn't set upremote.origin.fetch, so upstream tracking commands failrefs/remotes/origin/*), so upstream tracking couldn't be set without fetching firstChanges
checkout.rs: Check if local branch exists first; use it directly or create from remote with proper trackingclone.rs: Set up fetch refspec after bare clone; fetch and set upstream after creating worktreegit.rs: Addedconfig_set()andsetup_fetch_refspec()helper methodsTest plan
git-worktree-checkout masterno longer results in detached HEADgit branch -vvshows proper upstream tracking after both clone and checkoutFixes #47
🤖 Generated with Claude Code