diff options
-rw-r--r-- | ui-clone.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -19,12 +19,10 @@ static int print_ref_info(const char *refname, const unsigned char *sha1, | |||
19 | if (!(obj = parse_object(sha1))) | 19 | if (!(obj = parse_object(sha1))) |
20 | return 0; | 20 | return 0; |
21 | 21 | ||
22 | if (!strcmp(refname, "HEAD") || !prefixcmp(refname, "refs/heads/")) | 22 | htmlf("%s\t%s\n", sha1_to_hex(sha1), refname); |
23 | htmlf("%s\t%s\n", sha1_to_hex(sha1), refname); | 23 | if (obj->type == OBJ_TAG) { |
24 | else if (!prefixcmp(refname, "refs/tags") && obj->type == OBJ_TAG) { | ||
25 | if (!(obj = deref_tag(obj, refname, 0))) | 24 | if (!(obj = deref_tag(obj, refname, 0))) |
26 | return 0; | 25 | return 0; |
27 | htmlf("%s\t%s\n", sha1_to_hex(sha1), refname); | ||
28 | htmlf("%s\t%s^{}\n", sha1_to_hex(obj->sha1), refname); | 26 | htmlf("%s\t%s^{}\n", sha1_to_hex(obj->sha1), refname); |
29 | } | 27 | } |
30 | return 0; | 28 | return 0; |