summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 834caf9)
raw | patch | inline | side by side (parent: 834caf9)
author | Robin Rosenberg <robin.rosenberg.lists@dewire.com> | |
Sun, 21 Dec 2008 22:17:12 +0000 (14:17 -0800) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Mon, 22 Dec 2008 02:32:04 +0000 (18:32 -0800) |
As described in Documentation/howto/revert-a-faulty-merge.txt, re-merging
from a previously reverted a merge of a side branch may need a revert of
the revert beforehand. Record against which parent the revert was made in
the commit, so that later the user can figure out what went on.
Signed-off-by: Robin Rosenberg <robin.rosenberg@dewire.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
from a previously reverted a merge of a side branch may need a revert of
the revert beforehand. Record against which parent the revert was made in
the commit, so that later the user can figure out what went on.
Signed-off-by: Robin Rosenberg <robin.rosenberg@dewire.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-revert.c | patch | blob | history |
diff --git a/builtin-revert.c b/builtin-revert.c
index 4038b4118da087069db82bfcf6e0dd298aec9036..d48313c7453c24e7ab4cbb3e024d05ec311edf7b 100644 (file)
--- a/builtin-revert.c
+++ b/builtin-revert.c
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;