Copy-pasting the commit id from a revert message selects the trailing fullstop as well which has to be removed after pasting. That's inefficient. Signed-off-by: Amit Shah <amit.shah@xxxxxxxxxx> --- builtin-revert.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/builtin-revert.c b/builtin-revert.c index 151aa6a..7f0c22c 100644 --- a/builtin-revert.c +++ b/builtin-revert.c @@ -346,7 +346,7 @@ static int revert_or_cherry_pick(int argc, const char **argv) add_to_msg(", reversing\nchanges made to "); add_to_msg(sha1_to_hex(parent->object.sha1)); } - add_to_msg(".\n"); + add_to_msg("\n"); } else { base = parent; next = commit; -- 1.6.2.5 -- 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