]> git.ipfire.org Git - thirdparty/git.git/blobdiff - builtin-revert.c
Add basic infrastructure to assign attributes to paths
[thirdparty/git.git] / builtin-revert.c
index f3f3f5c6ee6fa666c3179145655ae7a968c27b3a..4ba0ee63ab4ca5e77aa350d1956f1b3312945f5d 100644 (file)
@@ -294,13 +294,13 @@ static int revert_or_cherry_pick(int argc, const char **argv)
        oneline = get_oneline(message);
 
        if (action == REVERT) {
+               char *oneline_body = strchr(oneline, ' ');
+
                base = commit;
                next = commit->parents->item;
-               add_to_msg("Revert ");
-               add_to_msg(find_unique_abbrev(commit->object.sha1,
-                                       DEFAULT_ABBREV));
-               add_to_msg(oneline);
-               add_to_msg("\nThis reverts commit ");
+               add_to_msg("Revert \"");
+               add_to_msg(oneline_body + 1);
+               add_to_msg("\"\n\nThis reverts commit ");
                add_to_msg(sha1_to_hex(commit->object.sha1));
                add_to_msg(".\n");
        } else {