diff options
| author | Jeff King <peff@peff.net> | 2025-08-18 17:01:54 -0400 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-08-18 14:23:43 -0700 |
| commit | c6478715a52b8f757e898e1d9f8f8d1732fafb24 (patch) | |
| tree | 54d75c9fed9eecf569f183e5d0ea3e5f73b572a4 /builtin | |
| parent | db2664b6f7c88910b1ab21bcdbac87be098df8a2 (diff) | |
| download | git-c6478715a52b8f757e898e1d9f8f8d1732fafb24.tar.xz | |
describe: catch unborn branch in describe_blob()
When describing a blob, we search for it by traversing from HEAD. We do
this by feeding the name HEAD to setup_revisions(). But if we are on an
unborn branch, this will fail with a confusing message:
$ git describe $blob
fatal: ambiguous argument 'HEAD': unknown revision or path not in the working tree.
Use '--' to separate paths from revisions, like this:
'git <command> [<revision>...] -- [<file>...]'
It is OK for this to be an error (we cannot find $blob in an empty
traversal, so we'd eventually complain about that). But the error
message could be more helpful.
Let's resolve HEAD ourselves and pass the resolved object id to
setup_revisions(). If resolving fails, then we can print a more useful
message.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
| -rw-r--r-- | builtin/describe.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/builtin/describe.c b/builtin/describe.c index 06e413d937..f7bea3c8c5 100644 --- a/builtin/describe.c +++ b/builtin/describe.c @@ -518,10 +518,16 @@ static void describe_blob(const struct object_id *oid, struct strbuf *dst) { struct rev_info revs; struct strvec args = STRVEC_INIT; + struct object_id head_oid; struct process_commit_data pcd = { *null_oid(the_hash_algo), oid, dst, &revs}; + if (repo_get_oid(the_repository, "HEAD", &head_oid)) + die(_("cannot search for blob '%s' on an unborn branch"), + oid_to_hex(oid)); + strvec_pushl(&args, "internal: The first arg is not parsed", - "--objects", "--in-commit-order", "--reverse", "HEAD", + "--objects", "--in-commit-order", "--reverse", + oid_to_hex(&head_oid), NULL); repo_init_revisions(the_repository, &revs, NULL); |
