diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-01-20 17:06:52 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-01-20 17:06:53 -0800 |
commit | 577f63e781d2f9b9a6862389b6e9d2ca2467afa2 (patch) | |
tree | ff7eb1668b21b118caa34a71fcde1026c0a932f4 /commit.h | |
parent | 02f55e660ccbd2fa1e3b2c686200f0037568f854 (diff) | |
parent | df874fa82ef06c8c438b9a19c56c0b5eb089c012 (diff) | |
download | git-577f63e781d2f9b9a6862389b6e9d2ca2467afa2.tar.gz |
Merge branch 'ap/log-mailmap'
Teach commands in the "log" family to optionally pay attention to
the mailmap.
* ap/log-mailmap:
log --use-mailmap: optimize for cases without --author/--committer search
log: add log.mailmap configuration option
log: grep author/committer using mailmap
test: add test for --use-mailmap option
log: add --use-mailmap option
pretty: use mailmap to display username and email
mailmap: add mailmap structure to rev_info and pp
mailmap: simplify map_user() interface
mailmap: remove email copy and length limitation
Use split_ident_line to parse author and committer
string-list: allow case-insensitive string list
Diffstat (limited to 'commit.h')
-rw-r--r-- | commit.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -89,6 +89,7 @@ struct pretty_print_context { char *notes_message; struct reflog_walk_info *reflog_info; const char *output_encoding; + struct string_list *mailmap; int color; }; |