I have a GIT repository which I would like to create a worktree from. The repository looks like:
alpha
.git
Part a
Part b
I execute the command git worktree add ../beta beta
(beta is a branch in alpha). I get:
beta
.git
alpha
Part a
Part b
I want the copy worktree to look like the original, only with branch beta checked out:
beta
.git
Part a
Part b
What am I doing wrong?
As commented,
git fsck
is the right tool to check if anything is amiss.With Git 2.41 (Q2 2023), "
git fsck
"(man) learned to check the index files in other worktrees, just like "git gc
"(man) honors them as anchoring points.See commit 8d3e7ea (26 Feb 2023), and commit 592ec63, commit fb64ca5, commit 8840069 (24 Feb 2023) by Jeff King (
peff
).(Merged by Junio C Hamano --
gitster
-- in commit 2d019f4, 17 Mar 2023)With Git 2.42 (Q3 2023), this is clarified:
See commit 6e6a529 (29 Jun 2023) by Eric Sunshine (
sunshineco
).(Merged by Junio C Hamano --
gitster
-- in commit b00ec25, 08 Jul 2023)