diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2008-07-12 00:28:18 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-07-11 21:16:37 -0700 |
commit | e0cbc39768884a1e7edcf2dbf6e6825c4b23485a (patch) | |
tree | b97af457b406343bcd49677ca09e6fd211591ddd /Documentation | |
parent | e09c4e753c337d914f4eb7a05cb5e8bbfc362489 (diff) | |
download | git-e0cbc39768884a1e7edcf2dbf6e6825c4b23485a.tar.gz |
Add pretty format %aN which gives the author name, respecting .mailmap
The pretty format %an does not respect .mailmap, but gives the exact
author name recorded in the commit. Sometimes it is more desirable,
however, to look if the email has another name mapped to it in .mailmap.
This commit adds %aN (and %cN for the committer name) to do exactly that.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/pretty-formats.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Documentation/pretty-formats.txt b/Documentation/pretty-formats.txt index 69e6d2fa44..c11d495771 100644 --- a/Documentation/pretty-formats.txt +++ b/Documentation/pretty-formats.txt @@ -101,6 +101,7 @@ The placeholders are: - '%P': parent hashes - '%p': abbreviated parent hashes - '%an': author name +- '%aN': author name (respecting .mailmap) - '%ae': author email - '%ad': author date - '%aD': author date, RFC2822 style @@ -108,6 +109,7 @@ The placeholders are: - '%at': author date, UNIX timestamp - '%ai': author date, ISO 8601 format - '%cn': committer name +- '%cN': committer name (respecting .mailmap) - '%ce': committer email - '%cd': committer date - '%cD': committer date, RFC2822 style |