When converting from the shell script, based on a misreading of the sed invocation, the builtin included the abbreviated commit name, and did _not_ include the quotes around the oneline message. This fixes it. Signed-off-by: Johannes Schindelin <Johannes.Schindelin@xxxxxx> --- On Fri, 23 Mar 2007, Linus Torvalds wrote: > > Can we please revert the "revert" changes to the default message? > > Dscho? Yeah? builtin-revert.c | 6 ++---- 1 files changed, 2 insertions(+), 4 deletions(-) diff --git a/builtin-revert.c b/builtin-revert.c index f3f3f5c..f4e1e22 100644 --- a/builtin-revert.c +++ b/builtin-revert.c @@ -296,11 +296,9 @@ static int revert_or_cherry_pick(int argc, const char **argv) if (action == REVERT) { base = commit; next = commit->parents->item; - add_to_msg("Revert "); - add_to_msg(find_unique_abbrev(commit->object.sha1, - DEFAULT_ABBREV)); + add_to_msg("Revert \""); add_to_msg(oneline); - add_to_msg("\nThis reverts commit "); + add_to_msg("\"\nThis reverts commit "); add_to_msg(sha1_to_hex(commit->object.sha1)); add_to_msg(".\n"); } else { -- 1.5.1.rc1.2356.g2054 - 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