strbuf_addf(display_buffer, "%c %-*s ", code, width, summary);
if (!display_state->compact_format)
- print_remote_to_local(display_state, display_buffer, remote, local);
+ print_remote_to_local(display_state, display_buffer, remote, prettify_refname(local));
else
- print_compact(display_state, display_buffer, remote, local);
+ print_compact(display_state, display_buffer, remote, prettify_refname(local));
if (error)
strbuf_addf(display_buffer, " (%s)", error);
}
struct strbuf *display, int summary_width)
{
struct commit *current = NULL, *updated;
- const char *pretty_ref = prettify_refname(ref->name);
int fast_forward = 0;
if (!repo_has_object_file(the_repository, &ref->new_oid))
if (oideq(&ref->old_oid, &ref->new_oid)) {
if (verbosity > 0)
format_display(display_state, display, '=', _("[up to date]"), NULL,
- remote, pretty_ref, summary_width);
+ remote, ref->name, summary_width);
return 0;
}
*/
format_display(display_state, display, '!', _("[rejected]"),
_("can't fetch into checked-out branch"),
- remote, pretty_ref, summary_width);
+ remote, ref->name, summary_width);
return 1;
}
r = s_update_ref("updating tag", ref, transaction, 0);
format_display(display_state, display, r ? '!' : 't', _("[tag update]"),
r ? _("unable to update local ref") : NULL,
- remote, pretty_ref, summary_width);
+ remote, ref->name, summary_width);
return r;
} else {
format_display(display_state, display, '!', _("[rejected]"),
_("would clobber existing tag"),
- remote, pretty_ref, summary_width);
+ remote, ref->name, summary_width);
return 1;
}
}
r = s_update_ref(msg, ref, transaction, 0);
format_display(display_state, display, r ? '!' : '*', what,
r ? _("unable to update local ref") : NULL,
- remote, pretty_ref, summary_width);
+ remote, ref->name, summary_width);
return r;
}
r = s_update_ref("fast-forward", ref, transaction, 1);
format_display(display_state, display, r ? '!' : ' ', quickref.buf,
r ? _("unable to update local ref") : NULL,
- remote, pretty_ref, summary_width);
+ remote, ref->name, summary_width);
strbuf_release(&quickref);
return r;
} else if (force || ref->force) {
r = s_update_ref("forced-update", ref, transaction, 1);
format_display(display_state, display, r ? '!' : '+', quickref.buf,
r ? _("unable to update local ref") : _("forced update"),
- remote, pretty_ref, summary_width);
+ remote, ref->name, summary_width);
strbuf_release(&quickref);
return r;
} else {
format_display(display_state, display, '!', _("[rejected]"), _("non-fast-forward"),
- remote, pretty_ref, summary_width);
+ remote, ref->name, summary_width);
return 1;
}
}
shown_url = 1;
}
format_display(display_state, &sb, '-', _("[deleted]"), NULL,
- _("(none)"), prettify_refname(ref->name),
+ _("(none)"), ref->name,
summary_width);
fprintf(stderr, " %s\n",sb.buf);
strbuf_release(&sb);