diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2009-10-09 12:22:05 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-10-19 19:00:24 -0700 |
commit | 8b208f0213ed349ecb2ab8f7bb6c5072f8011a70 (patch) | |
tree | 783f393b4bb6cae0b5fcd553316f4f4e74f83cb8 /pretty.c | |
parent | c56fcc89b951f3e8c9240ea02676b2eef5417da6 (diff) | |
download | git-8b208f0213ed349ecb2ab8f7bb6c5072f8011a70.tar.gz |
Add '%N'-format for pretty-printing commit notes
Signed-off-by: Johan Herland <johan@herland.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'pretty.c')
-rw-r--r-- | pretty.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -702,6 +702,10 @@ static size_t format_commit_item(struct strbuf *sb, const char *placeholder, case 'd': format_decoration(sb, commit); return 1; + case 'N': + get_commit_notes(commit, sb, git_log_output_encoding ? + git_log_output_encoding : git_commit_encoding, 0); + return 1; } /* For the rest we have to parse the commit header. */ |