summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
2e8e9af)
I have a number of repositories that start tagging with just '1' and
count up. Actually references with sting length of one are skipped, this
patch changes that.
const char *basename;
int free_ref = 0;
const char *basename;
int free_ref = 0;
- if (!ref || strlen(ref) < 2)
+ if (!ref || strlen(ref) < 1)
return;
basename = cgit_repobasename(repo->url);
return;
basename = cgit_repobasename(repo->url);