]> git.ipfire.org Git - thirdparty/git.git/commit - pretty.c
pretty: add %(trailers) format for displaying trailers of a commit message
authorJacob Keller <jacob.keller@gmail.com>
Sat, 19 Nov 2016 00:58:14 +0000 (16:58 -0800)
committerJunio C Hamano <gitster@pobox.com>
Sun, 11 Dec 2016 21:58:41 +0000 (13:58 -0800)
commitd9f31fbfe98e0e363a3c69aaf6badecc746afe6b
treee8aeacdbd2aae73e2ffc4f9497c19e321e1548e3
parent967dfd4d568c2b102281de8cc22ee35f7558358b
pretty: add %(trailers) format for displaying trailers of a commit message

Recent patches have expanded on the trailers.c code and we have the
builtin commant git-interpret-trailers which can be used to add or
modify trailer lines. However, there is no easy way to simply display
the trailers of a commit message.

Add support for %(trailers) format modifier which will use the
trailer_info_get() calls to read trailers in an identical way as git
interpret-trailers does. Use a long format option instead of a short
name so that future work can more easily unify ref-filter and pretty
formats.

Add documentation and tests for the same.

Signed-off-by: Jacob Keller <jacob.keller@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/pretty-formats.txt
pretty.c
t/t4205-log-pretty-formats.sh