From: Johannes Schindelin Date: Mon, 2 Jan 2017 15:36:25 +0000 (+0100) Subject: sequencer (rebase -i): write out the final message X-Git-Tag: v2.12.0-rc0~38^2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/5da4966f2808371ba94de467d06b4e7e7ab125d8 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 Signed-off-by: Junio C Hamano --- diff --git a/sequencer.c b/sequencer.c index 5f22919772..1f729b053b 100644 --- a/sequencer.c +++ b/sequencer.c @@ -2127,6 +2127,9 @@ static int pick_commits(struct todo_list *todo_list, struct replay_opts *opts) } apply_autostash(opts); + fprintf(stderr, "Successfully rebased and updated %s.\n", + head_ref.buf); + strbuf_release(&buf); strbuf_release(&head_ref); }