X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/d532c4d1612c94347427fa1afda6afb7c34e512a..81bf4d32b377d3f2fdd7ab3ca651be99408f5c32:/ui-clone.c diff --git a/ui-clone.c b/ui-clone.c index 81e7a4e..30d020e 100644 --- a/ui-clone.c +++ b/ui-clone.c @@ -8,6 +8,7 @@ */ #include "cgit.h" +#include "ui-clone.h" #include "html.h" #include "ui-shared.h" @@ -19,12 +20,10 @@ static int print_ref_info(const char *refname, const unsigned char *sha1, if (!(obj = parse_object(sha1))) return 0; - 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) { + htmlf("%s\t%s\n", sha1_to_hex(sha1), refname); + if (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;