From: Marc Branchaud <marcnarc@xxxxxxxxxxx> Signed-off-by: Marc Branchaud <marcnarc@xxxxxxxxxxx> --- builtin/fetch.c | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/builtin/fetch.c b/builtin/fetch.c index cfb43df..6c19975 100644 --- a/builtin/fetch.c +++ b/builtin/fetch.c @@ -239,7 +239,8 @@ static int s_update_ref(const char *action, #define REFCOL_WIDTH 10 static int update_local_ref(struct ref *ref, - const char *remote, + const char *remote_ref_shortname, + const struct ref *remote_ref, struct strbuf *display) { struct commit *current = NULL, *updated; @@ -256,7 +257,7 @@ static int update_local_ref(struct ref *ref, strbuf_addf(display, "= %-*s %-*s -> %s", TRANSPORT_SUMMARY_WIDTH, _("[up to date]"), REFCOL_WIDTH, - remote, pretty_ref); + remote_ref_shortname, pretty_ref); return 0; } @@ -271,7 +272,7 @@ static int update_local_ref(struct ref *ref, strbuf_addf(display, _("! %-*s %-*s -> %s (can't fetch in current branch)"), TRANSPORT_SUMMARY_WIDTH, _("[rejected]"), - REFCOL_WIDTH, remote, pretty_ref); + REFCOL_WIDTH, remote_ref_shortname, pretty_ref); return 1; } @@ -282,7 +283,7 @@ static int update_local_ref(struct ref *ref, strbuf_addf(display, "%c %-*s %-*s -> %s%s", r ? '!' : '-', TRANSPORT_SUMMARY_WIDTH, _("[tag update]"), - REFCOL_WIDTH, remote, pretty_ref, + REFCOL_WIDTH, remote_ref_shortname, pretty_ref, r ? _(" (unable to update local ref)") : ""); return r; } @@ -309,7 +310,7 @@ static int update_local_ref(struct ref *ref, strbuf_addf(display, "%c %-*s %-*s -> %s%s", r ? '!' : '*', TRANSPORT_SUMMARY_WIDTH, what, - REFCOL_WIDTH, remote, pretty_ref, + REFCOL_WIDTH, remote_ref_shortname, pretty_ref, r ? _(" (unable to update local ref)") : ""); return r; } @@ -327,7 +328,7 @@ static int update_local_ref(struct ref *ref, strbuf_addf(display, "%c %-*s %-*s -> %s%s", r ? '!' : ' ', TRANSPORT_SUMMARY_WIDTH, quickref, - REFCOL_WIDTH, remote, pretty_ref, + REFCOL_WIDTH, remote_ref_shortname, pretty_ref, r ? _(" (unable to update local ref)") : ""); return r; } else if (force || ref->force) { @@ -343,13 +344,13 @@ static int update_local_ref(struct ref *ref, strbuf_addf(display, "%c %-*s %-*s -> %s (%s)", r ? '!' : '+', TRANSPORT_SUMMARY_WIDTH, quickref, - REFCOL_WIDTH, remote, pretty_ref, + REFCOL_WIDTH, remote_ref_shortname, pretty_ref, r ? _("unable to update local ref") : _("forced update")); return r; } else { strbuf_addf(display, "! %-*s %-*s -> %s %s", TRANSPORT_SUMMARY_WIDTH, _("[rejected]"), - REFCOL_WIDTH, remote, pretty_ref, + REFCOL_WIDTH, remote_ref_shortname, pretty_ref, _("(non-fast-forward)")); return 1; } @@ -466,7 +467,7 @@ static int store_updated_refs(const char *raw_url, const char *remote_name, strbuf_reset(¬e); if (ref) { - rc |= update_local_ref(ref, what, ¬e); + rc |= update_local_ref(ref, what, rm, ¬e); free(ref); } else strbuf_addf(¬e, "* %-*s %-*s -> FETCH_HEAD", -- 1.7.10.2.ge89da.dirty -- 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