From: John Cai <johncai86@xxxxxxxxx> Signed-off-by: John Cai <johncai86@xxxxxxxxx> --- t/t4205-log-pretty-formats.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/t/t4205-log-pretty-formats.sh b/t/t4205-log-pretty-formats.sh index 5865daa8f8d..847426f8af0 100755 --- a/t/t4205-log-pretty-formats.sh +++ b/t/t4205-log-pretty-formats.sh @@ -576,6 +576,16 @@ test_expect_success 'clean log decoration' ' test_cmp expected actual1 ' +test_expect_success 'oneline with --newlineafter=decorations' ' + git checkout -b newlineafter && + >baz && + git add baz && + git commit -m "decorations" && + git log --pretty=format:"%h%d%n%>(18) %s%n" --max-count=1 >expect && + git log --oneline --decorate --max-count=1 --newlineafter=decorations >actual && + test_cmp expect actual +' + cat >trailers <<EOF Signed-off-by: A U Thor <author@xxxxxxxxxxx> Acked-by: A U Thor <author@xxxxxxxxxxx> -- gitgitgadget