pretty: support multiline subjects with format:
commitf53bd743ff713f6507f28f8e730ac3e27858ab43
authorRené Scharfe <rene.scharfe@lsrfire.ath.cx>
Sat, 27 Dec 2008 00:49:21 +0000 (27 01:49 +0100)
committerJunio C Hamano <gitster@pobox.com>
Sat, 27 Dec 2008 20:02:49 +0000 (27 12:02 -0800)
tree16025c071a50e62b097d1b784090231e667a38e1
parent88c44735ab24aea3e669501c4491f7c9ca745ca3
pretty: support multiline subjects with format:

git log --pretty=format:%s (and tformat:) used to display the first
line of the subject, unlike the other --pretty options, which would
construct a subject line from all lines of the first paragraph of
the commit message.

For consistency and increased code reuse, change format: to do the
same as the other options.

Before:
$ git log --pretty=oneline v1.6.1 | md5sum
7c0896d2a94fc3315a0372b9b3373a8f  -
$ git log --pretty=tformat:"%H %s" v1.6.1 | md5sum
298903b1c065002e15daa5329213c51f  -

After:
$ git log --pretty=tformat:"%H %s" v1.6.1 | md5sum
7c0896d2a94fc3315a0372b9b3373a8f  -
$ git log --pretty=oneline v1.6.1 | md5sum
7c0896d2a94fc3315a0372b9b3373a8f  -

Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
pretty.c