Add %B' in format strings for raw commit body in
git log' and friends
Also update the documentation text and add a test. Signed-off-by: Eli Barzilay <eli@barzilay.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
11766ca4a8
commit
1367b12ad6
4
pretty.c
4
pretty.c
@ -797,6 +797,10 @@ static size_t format_commit_one(struct strbuf *sb, const char *placeholder,
|
||||
case 'e': /* encoding */
|
||||
strbuf_add(sb, msg + c->encoding.off, c->encoding.len);
|
||||
return 1;
|
||||
case 'B': /* raw body */
|
||||
/* message_off is always left at the initial newline */
|
||||
strbuf_addstr(sb, msg + c->message_off + 1);
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* Now we need to parse the commit message. */
|
||||
|
Reference in New Issue
Block a user