diff options
author | Antoine Pelisse <apelisse@gmail.com> | 2013-01-05 22:26:41 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-01-10 12:33:08 -0800 |
commit | 0e2913b042825cb3ff6798245f9224f41183d159 (patch) | |
tree | 0bc20b61098a36a7cb88031f3883a2c99fb8bf11 /revision.h | |
parent | ea02ffa38571084007eb7c63f650d0011e44a3dd (diff) | |
download | git-0e2913b042825cb3ff6798245f9224f41183d159.tar.gz |
mailmap: add mailmap structure to rev_info and pp
Pass a mailmap from rev_info to pretty_print_context to so that the
pretty printer can use rewritten name and email address when showing
commits.
Signed-off-by: Antoine Pelisse <apelisse@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'revision.h')
-rw-r--r-- | revision.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/revision.h b/revision.h index 059bfff812..83a79f5815 100644 --- a/revision.h +++ b/revision.h @@ -143,6 +143,7 @@ struct rev_info { const char *subject_prefix; int no_inline; int show_log_size; + struct string_list *mailmap; /* Filter by commit log message */ struct grep_opt grep_filter; |