Code

git config: don't allow --get-color* and variable type
[git.git] / builtin-revert.c
index 4038b4118da087069db82bfcf6e0dd298aec9036..d48313c7453c24e7ab4cbb3e024d05ec311edf7b 100644 (file)
@@ -352,6 +352,11 @@ static int revert_or_cherry_pick(int argc, const char **argv)
                add_to_msg(oneline_body + 1);
                add_to_msg("\"\n\nThis reverts commit ");
                add_to_msg(sha1_to_hex(commit->object.sha1));
+
+               if (commit->parents->next) {
+                       add_to_msg(", reversing\nchanges made to ");
+                       add_to_msg(sha1_to_hex(parent->object.sha1));
+               }
                add_to_msg(".\n");
        } else {
                base = parent;