]> git.ipfire.org Git - thirdparty/git.git/commit - sequencer.c
sequencer: drop "warning:" when stopping for edit
authorJeff King <peff@peff.net>
Fri, 17 Mar 2017 00:19:42 +0000 (20:19 -0400)
committerJunio C Hamano <gitster@pobox.com>
Fri, 17 Mar 2017 17:31:48 +0000 (10:31 -0700)
commit994292130121175dcb53f72541b7445e4b054d75
tree90459e6ab2e776777fb7147d0cf0e627e3f08dd8
parent18633e1a22a68bbe8e6311a1039d13ebbf6fd041
sequencer: drop "warning:" when stopping for edit

Since the conversion from shell to C in 56dc3ab04 (sequencer
(rebase -i): implement the 'edit' command, 2017-01-02),
stopping at an "edit" instruction went from:

  $ git rebase -i
  Stopped at 6ce6b914a... odb_pack_keep(): stop generating keepfile name
  You can amend the commit now, with
    [...more instructions...]

to:

  $ git rebase -i
  warning: stopped at 6ce6b914a... odb_pack_keep(): stop generating keepfile name
  You can amend the commit now, with
    [...more instructions...]

The "warning" implies that it's something unexpected, but
it's not. Let's switch back to the original message.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
sequencer.c