marcnarc@xxxxxxxxxxx wrote: > --- a/builtin/fetch.c > +++ b/builtin/fetch.c > @@ -293,14 +293,18 @@ static int update_local_ref(struct ref *ref, > const char *msg; > const char *what; > int r; > - if (!strncmp(ref->name, "refs/tags/", 10)) { > + if (!prefixcmp(ref->name, "refs/tags/")) { This part is just a clean-up, right? > msg = "storing tag"; > what = _("[new tag]"); > } > - else { > + else if (!prefixcmp(ref->name, "refs/heads/")) { > msg = "storing head"; > what = _("[new branch]"); > } > + else { > + msg = "storing ref"; > + what = _("[new ref]"); > + } Neat. I like it, for what it's worth. Sincerely, Jonathan -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html