When given "-n", tag will show one or more lines of the body of an annotated tag. However, we never actually checked to see that what we got was a tag; we might end up showing random lines from a lightweight-tagged blob or commit. With this patch, we'll show lines only from tag objects (but still include non-tag objects in the listing). It might make more sense to omit lightweight tags from the listing entirely when "-n" is in effect. I stuck with this behavior because it is slightly more compatible with the original behavior. This might be seen as a regression for people with lightweight tags to commit, who would previously get the subject line of the commit. The code seems to indicate that is not expected (since it does things like parsing off gpg signatures), but it's possible somebody has been relying on it. Signed-off-by: Jeff King <peff@xxxxxxxx> --- The regression comment above makes me a little nervous. Still, if we want to handle commits, we should do so explicitly and not munge them with parse_signature. So I think it's a step in the right direction, and we should let it cook for a bit and see if anybody complains. builtin/tag.c | 2 +- t/t7004-tag.sh | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletions(-) diff --git a/builtin/tag.c b/builtin/tag.c index 1bb42a4..0a7c174 100644 --- a/builtin/tag.c +++ b/builtin/tag.c @@ -94,7 +94,7 @@ static void show_tag_lines(const unsigned char *sha1, int lines) buf = read_sha1_file(sha1, &type, &size); if (!buf) die_errno("unable to read object %s", sha1_to_hex(sha1)); - if (!size) { + if (!size || type != OBJ_TAG) { free(buf); return; } diff --git a/t/t7004-tag.sh b/t/t7004-tag.sh index e93ac73..0db0f6a 100755 --- a/t/t7004-tag.sh +++ b/t/t7004-tag.sh @@ -586,6 +586,19 @@ test_expect_success \ test_cmp expect actual ' +test_expect_success 'annotations for non-tags are empty' ' + blob=$(git hash-object -w --stdin <<-\EOF + Blob paragraph 1. + + Blob paragraph 2. + EOF + ) && + git tag tag-blob $blob && + echo "tag-blob " >expect && + git tag -n1 -l tag-blob >actual && + test_cmp expect actual +' + # trying to verify annotated non-signed tags: test_expect_success GPG \ -- 1.7.9.rc1.29.g43677 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html