aboutsummaryrefslogtreecommitdiff
diff refs
from: back
to: back
| flip
diff options
context:
space:
mode:
-rw-r--r--ui-clone.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/ui-clone.c b/ui-clone.c
index fdea24f..81e7a4e 100644
--- a/ui-clone.c
+++ b/ui-clone.c
@@ -19,10 +19,12 @@ static int print_ref_info(const char *refname, const unsigned char *sha1,
if (!(obj = parse_object(sha1)))
return 0;
- htmlf("%s\t%s\n", sha1_to_hex(sha1), refname);
- if (obj->type == OBJ_TAG) {
+ if (!strcmp(refname, "HEAD") || !prefixcmp(refname, "refs/heads/"))
+ htmlf("%s\t%s\n", sha1_to_hex(sha1), refname);
+ else if (!prefixcmp(refname, "refs/tags") && obj->type == OBJ_TAG) {
if (!(obj = deref_tag(obj, refname, 0)))
return 0;
+ htmlf("%s\t%s\n", sha1_to_hex(sha1), refname);
htmlf("%s\t%s^{}\n", sha1_to_hex(obj->sha1), refname);
}
return 0;