X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=builtin-describe.c;h=3a007ed1cafcab82f466d355b63e416b06eb8864;hb=35fb0e8633217f602360a9987af51c4b960e7850;hp=d2cfb1b0837ffd1ab3b1f69e8dee0ffa36f2e1ab;hpb=47577456bfe61c32df73a7cf4a388f007af3b18f;p=git.git diff --git a/builtin-describe.c b/builtin-describe.c index d2cfb1b08..3a007ed1c 100644 --- a/builtin-describe.c +++ b/builtin-describe.c @@ -158,7 +158,7 @@ static void display_name(struct commit_name *n) n->tag = lookup_tag(n->sha1); if (!n->tag || parse_tag(n->tag) || !n->tag->tag) die("annotated tag %s not available", n->path); - if (strcmp(n->tag->tag, n->path)) + if (strcmp(n->tag->tag, all ? n->path + 5 : n->path)) warning("tag '%s' is really '%s' here", n->tag->tag, n->path); }