]> git.ipfire.org Git - thirdparty/git.git/commit - sequencer.c
sequencer: fix missing newline
authorBrandon Williams <bmwill@google.com>
Thu, 23 Mar 2017 17:02:33 +0000 (10:02 -0700)
committerJunio C Hamano <gitster@pobox.com>
Thu, 23 Mar 2017 18:19:23 +0000 (11:19 -0700)
commita42e1b4194b02638ea4f590ac1e7d231274886d1
tree437fa5b99cdaee3123f73182cd2378a73dcdcdf4
parent994292130121175dcb53f72541b7445e4b054d75
sequencer: fix missing newline

When using rebase --interactive where one of the lines is marked as
'edit' this is the resulting output:

    Stopped at ec3b9c4...  stuffYou can amend the commit now, with

      git commit --amend

    Once you are satisfied with your changes, run

      git rebase --continue

A newline character is missing at the end of the "Stopped at ..." line and
before the "You can amend ..." line.  This patch fixes the malformed output by
adding the missing newline character to the end of the "Stopped at ..." line.

Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
sequencer.c