Skip to content

Commit a234563

Browse files
pcloudsgitster
authored andcommitted
get_worktrees() must return main worktree as first item even on error
This is required by git-worktree.txt, stating that the main worktree is the first line (especially in --porcelain mode when we can't just change behavior at will). There's only one case when get_worktrees() may skip main worktree, when parse_ref() fails. Update the code so that we keep first item as main worktree and return something sensible in this case: - In user-friendly mode, since we're not constraint by anything, returning "(error)" should do the job (we already show "(detached HEAD)" which is not machine-friendly). Actually errors should be printed on stderr by parse_ref() (*) - In plumbing mode, we do not show neither 'bare', 'detached' or 'branch ...', which is possible by the format description if I read it right. Careful readers may realize that when the local variable "head_ref" in get_main_worktree() is emptied, add_head_info() will do nothing to wt->head_sha1. But that's ok because head_sha1 is zero-ized in the previous patch. (*) Well, it does not. But it's supposed to be a stop gap implementation until we can reuse refs code to parse "ref: " stuff in HEAD, from resolve_refs_unsafe(). Now may be the time since refs refactoring is mostly done. Signed-off-by: Nguyễn Thái Ngọc Duy <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 96f09e2 commit a234563

File tree

3 files changed

+28
-9
lines changed

3 files changed

+28
-9
lines changed

builtin/worktree.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ static void show_worktree_porcelain(struct worktree *wt)
388388
printf("HEAD %s\n", sha1_to_hex(wt->head_sha1));
389389
if (wt->is_detached)
390390
printf("detached\n");
391-
else
391+
else if (wt->head_ref)
392392
printf("branch %s\n", wt->head_ref);
393393
}
394394
printf("\n");
@@ -408,8 +408,10 @@ static void show_worktree(struct worktree *wt, int path_maxlen, int abbrev_len)
408408
find_unique_abbrev(wt->head_sha1, DEFAULT_ABBREV));
409409
if (wt->is_detached)
410410
strbuf_addstr(&sb, "(detached HEAD)");
411-
else
411+
else if (wt->head_ref)
412412
strbuf_addf(&sb, "[%s]", shorten_unambiguous_ref(wt->head_ref, 0));
413+
else
414+
strbuf_addstr(&sb, "(error)");
413415
}
414416
printf("%s\n", sb.buf);
415417

t/t2027-worktree-list.sh

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,25 @@ test_expect_success 'bare repo cleanup' '
9696
rm -rf bare1
9797
'
9898

99+
test_expect_success 'broken main worktree still at the top' '
100+
git init broken-main &&
101+
(
102+
cd broken-main &&
103+
test_commit new &&
104+
git worktree add linked &&
105+
cat >expected <<-EOF &&
106+
worktree $(pwd)
107+
HEAD $_z40
108+
109+
EOF
110+
cd linked &&
111+
echo "worktree $(pwd)" >expected &&
112+
echo "ref: .broken" >../.git/HEAD &&
113+
git worktree list --porcelain | head -n 3 >actual &&
114+
test_cmp ../expected actual &&
115+
git worktree list | head -n 1 >actual.2 &&
116+
grep -F "(error)" actual.2
117+
)
118+
'
119+
99120
test_done

worktree.c

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -88,16 +88,13 @@ static struct worktree *get_main_worktree(void)
8888

8989
strbuf_addf(&path, "%s/HEAD", get_git_common_dir());
9090

91-
if (parse_ref(path.buf, &head_ref, &is_detached) < 0)
92-
goto done;
93-
9491
worktree = xcalloc(1, sizeof(*worktree));
9592
worktree->path = strbuf_detach(&worktree_path, NULL);
9693
worktree->is_bare = is_bare;
9794
worktree->is_detached = is_detached;
98-
add_head_info(&head_ref, worktree);
95+
if (!parse_ref(path.buf, &head_ref, &is_detached))
96+
add_head_info(&head_ref, worktree);
9997

100-
done:
10198
strbuf_release(&path);
10299
strbuf_release(&worktree_path);
103100
strbuf_release(&head_ref);
@@ -173,8 +170,7 @@ struct worktree **get_worktrees(void)
173170

174171
list = xmalloc(alloc * sizeof(struct worktree *));
175172

176-
if ((list[counter] = get_main_worktree()))
177-
counter++;
173+
list[counter++] = get_main_worktree();
178174

179175
strbuf_addf(&path, "%s/worktrees", get_git_common_dir());
180176
dir = opendir(path.buf);

0 commit comments

Comments
 (0)