X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=server-info.c;h=0cba8e19f7582fa5771ed6ab94a76e1d87efc53a;hb=75187c9debdc57d47e0842f97e30cb912d364ff2;hp=3c08a288db9fd36b637b8da854a63cfbdcaa03da;hpb=d5b0c9ea178dab3599674ccff50645c0464b8c31;p=git.git diff --git a/server-info.c b/server-info.c index 3c08a288..0cba8e19 100644 --- a/server-info.c +++ b/server-info.c @@ -9,7 +9,15 @@ static FILE *info_ref_fp; static int add_info_ref(const char *path, const unsigned char *sha1) { + struct object *o = parse_object(sha1); + fprintf(info_ref_fp, "%s %s\n", sha1_to_hex(sha1), path); + if (o->type == tag_type) { + o = deref_tag(o, path, 0); + if (o) + fprintf(info_ref_fp, "%s %s^{}\n", + sha1_to_hex(o->sha1), path); + } return 0; }