sequencer (rebase -i): write out the final message

The shell script version of the interactive rebase has a very specific final message. Teach the sequencer to print the same. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Johannes Schindelin committed Jan 2, 2017 at 16:36 UTC 5da4966f2808371ba94de467d06b4e7e7ab125d8
1 file changed +3
sequencer.c
+3
@@ -2127,6 +2127,9 @@ cleanup_head_ref:
2127 }
2128 apply_autostash(opts);
2129
2130 + fprintf(stderr, "Successfully rebased and updated %s.\n",
2131 + head_ref.buf);
2132 +
2133 strbuf_release(&buf);
2134 strbuf_release(&head_ref);
2135 }