Printing a 40 character sha1 hash in the middle of a message stretches the sentence a lot. Print the abbreviated version instead. Signed-off-by: Ralf Thielow <ralf.thielow@xxxxxxxxx> --- sequencer.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/sequencer.c b/sequencer.c index c4f4b7d..2a39ab6 100644 --- a/sequencer.c +++ b/sequencer.c @@ -498,20 +498,21 @@ static int do_pick_commit(struct commit *commit, struct replay_opts *opts) struct commit_list *p; if (!opts->mainline) - return error(_("Commit %s is a merge but no -m option was given."), - sha1_to_hex(commit->object.sha1)); + return error(_("Commit %s... is a merge but no -m option was given."), + find_unique_abbrev(commit->object.sha1, DEFAULT_ABBREV)); for (cnt = 1, p = commit->parents; cnt != opts->mainline && p; cnt++) p = p->next; if (cnt != opts->mainline || !p) - return error(_("Commit %s does not have parent %d"), - sha1_to_hex(commit->object.sha1), opts->mainline); + return error(_("Commit %s... does not have parent %d"), + find_unique_abbrev(commit->object.sha1, DEFAULT_ABBREV), + opts->mainline); parent = p->item; } else if (0 < opts->mainline) - return error(_("Mainline was specified but commit %s is not a merge."), - sha1_to_hex(commit->object.sha1)); + return error(_("Mainline was specified but commit %s... is not a merge."), + find_unique_abbrev(commit->object.sha1, DEFAULT_ABBREV)); else parent = commit->parents->item; -- 2.4.0.228.gc627b12 -- 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