X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=builtin-for-each-ref.c;h=fef93d7488d15fac28e96f887f26556755cc6ca8;hb=3b6121f69b2a27c3bbff5cc3056c30b15394441b;hp=07d9c572125523e2eb8f82e4cab907ee7dc94348;hpb=5736a3747120d6215de4fdfcf45f4a168a8d024e;p=git.git diff --git a/builtin-for-each-ref.c b/builtin-for-each-ref.c index 07d9c5721..fef93d748 100644 --- a/builtin-for-each-ref.c +++ b/builtin-for-each-ref.c @@ -234,6 +234,13 @@ static void grab_tag_values(struct atom_value *val, int deref, struct object *ob name++; if (!strcmp(name, "tag")) v->s = tag->tag; + else if (!strcmp(name, "type") && tag->tagged) + v->s = typename(tag->tagged->type); + else if (!strcmp(name, "object") && tag->tagged) { + char *s = xmalloc(41); + strcpy(s, sha1_to_hex(tag->tagged->sha1)); + v->s = s; + } } }