From: Marc Branchaud <marcnarc@xxxxxxxxxxx> Signed-off-by: Marc Branchaud <marcnarc@xxxxxxxxxxx> --- Re-rolled atop of Jens's fix. Thanks guys -- glad I finally itched this scratch! M. builtin/fetch.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/builtin/fetch.c b/builtin/fetch.c index cfb43df..b6f737e 100644 --- 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/")) { 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]"); + } if ((recurse_submodules != RECURSE_SUBMODULES_OFF) && (recurse_submodules != RECURSE_SUBMODULES_ON)) -- 1.7.10.2.ge89da -- 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