X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=server-info.c;h=ba5359108deb4f010be366ef65974ec7db123098;hb=23d61f8343282643c830e1c446962b213dbcc09a;hp=3c08a288db9fd36b637b8da854a63cfbdcaa03da;hpb=d5b0c9ea178dab3599674ccff50645c0464b8c31;p=git.git diff --git a/server-info.c b/server-info.c index 3c08a288..ba535910 100644 --- a/server-info.c +++ b/server-info.c @@ -9,7 +9,14 @@ 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); + fprintf(info_ref_fp, "%s %s^{}\n", + sha1_to_hex(o->sha1), path); + } return 0; }