When I do git worktree list
, it display follows.
/path/to/workspace c943d35 [master]
/path/to/workspace ef4df56 (detached HEAD)
It is my working directory (not worktree directory). I do not know how it happened, and how to clean it. I've try git worktree prune
, but it does not change anything. Any help will be appreciated. Many thanks.
git worktree
-- details mentions:Check the content of your
main repo/.git/worktrees
and see if there is a sub-folder that you could manually remove.Git 2.20 (Q4 2018) fixes a bug in which the same path could be registered under multiple worktree entries if the path was missing (for instance, was removed manually).
Also, as a convenience, expand the number of cases in which
--force
is applicable.See commit 684e742 (30 Aug 2018) by Jeff King (
peff
).See commit 3a54043, commit f414310, commit 68a6b3a, commit e19831c, commit cb56f55, commit 45059e6, commit 602aaed, commit e5353be, commit 4c5fa9e (28 Aug 2018) by Eric Sunshine (
sunshineco
).(Merged by Junio C Hamano --
gitster
-- in commit 1c515bf, 17 Sep 2018)The same Git 2.20, when traversing objects for reachability and deciding what objects are unreferenced and expendable, have been taught to also consider per-worktree refs of other worktrees as starting points to prevent data loss.
See commit 14f74d5 (03 Nov 2018), commit c9ef0d9, commit b29759d, commit ab3e1f7, commit 061e420, commit 3a3b9d8 (21 Oct 2018), and commit 8aff1a9, commit 5c79f74 (29 Sep 2018) by Nguyễn Thái Ngọc Duy (
pclouds
).See commit a8c754d (21 Oct 2018) by Elijah Newren (
newren
).(Merged by Junio C Hamano --
gitster
-- in commit e146cc9, 13 Nov 2018)In particular (commit 3a3b9d8):
That (the new refs "
worktrees/<name>/HEAD
") leads to Git 2.23 (Q2 2019), where the code now sanitizes the names given to worktrees, to make sure these refs are well-formed.See commit 1de16ae (08 Mar 2019) by Nguyễn Thái Ngọc Duy (
pclouds
).Helped-by: Jeff King (
peff
).(Merged by Junio C Hamano --
gitster
-- in commit 0d107b1, 13 Jun 2019)And the same Git 2.22.1 (Q3 2019) mentions "
git worktree add
" used to fail when another worktree connected to the same repository was corrupt, which has been corrected.See commit 105df73 (13 May 2019) by Nguyễn Thái Ngọc Duy (
pclouds
).(Merged by Junio C Hamano --
gitster
-- in commit 933f294, 25 Jul 2019)Before Git 2.26 (Q1 2020), in rare cases "
git worktree
add <path>
" could think that<path>
was already a registered worktree even when it wasn't, and refuse to add the new worktree.This has been corrected.
See commit bb69b3b, commit bb4995f, commit a80c4c2 (24 Feb 2020) by Eric Sunshine (
sunshineco
).(Merged by Junio C Hamano --
gitster
-- in commit 49e5043, 05 Mar 2020)And:
Note that the same worktree directory must be registered only once, but "
git worktree move
" allowed this invariant to be violated, which has been corrected with Git 2.28 (Q3 2020).See commit 810382e, commit d179af6, commit 916133e, commit 4a3ce47, commit dd9609a, commit 1b14d40 (10 Jun 2020), and commit c9b77f2 (08 Jun 2020) by Eric Sunshine (
sunshineco
).(Merged by Junio C Hamano --
gitster
-- in commit 9740ef8, 22 Jun 2020)With Git 2.28 (Q3 2020), The same worktree directory must be registered only once, but "
git worktree
move" allowed this invariant to be violated, which has been corrected.See commit 810382e, commit d179af6, commit 916133e, commit 4a3ce47, commit dd9609a, commit 1b14d40 (10 Jun 2020), and commit c9b77f2 (08 Jun 2020) by Eric Sunshine (
sunshineco
).(Merged by Junio C Hamano --
gitster
-- in commit 9740ef8, 22 Jun 2020)And:
Note that Git 2.30 does list locked worktrees:
See commit c57b336:
With Git 2.33 (Q3 2021), "
git worktree add --lock
"(man) learned to record why the worktree is locked with a custom message.See commit 0db4961 (15 Jul 2021), and commit f7c35ea, commit f9365c0 (11 Jul 2021) by Stephen Manz (
SRManz
).(Merged by Junio C Hamano --
gitster
-- in commit 01369fd, 28 Jul 2021)git worktree
now includes in its man page:git worktree
now includes in its man page: