blob: 02f441832321e4d6a9a35ad38e98a4ae5af0982e [file] [log] [blame]
Junio C Hamano58f587a2013-07-22 19:20:591git-check-mailmap(1)
2====================
3
4NAME
5----
6git-check-mailmap - Show canonical names and email addresses of contacts
7
8
9SYNOPSIS
10--------
11[verse]
Junio C Hamanoc9cb5172018-06-01 07:13:4412'git check-mailmap' [<options>] <contact>...
Junio C Hamano58f587a2013-07-22 19:20:5913
14
15DESCRIPTION
16-----------
17
18For each ``Name $$<user@host>$$'' or ``$$<user@host>$$'' from the command-line
19or standard input (when using `--stdin`), look up the person's canonical name
20and email address (see "Mapping Authors" below). If found, print them;
21otherwise print the input as-is.
22
23
24OPTIONS
25-------
26--stdin::
27Read contacts, one per line, from the standard input after exhausting
28contacts provided on the command-line.
29
30
31OUTPUT
32------
33
34For each contact, a single line is output, terminated by a newline. If the
35name is provided or known to the 'mailmap', ``Name $$<user@host>$$'' is
36printed; otherwise only ``$$<user@host>$$'' is printed.
37
38
Junio C Hamano7887f9b2021-01-25 23:32:3339CONFIGURATION
40-------------
41
42See `mailmap.file` and `mailmap.blob` in linkgit:git-config[1] for how
43to specify a custom `.mailmap` target file or object.
44
45
Junio C Hamano58f587a2013-07-22 19:20:5946MAPPING AUTHORS
47---------------
48
Junio C Hamano7887f9b2021-01-25 23:32:3349See linkgit:gitmailmap[5].
Junio C Hamano58f587a2013-07-22 19:20:5950
51
52GIT
53---
54Part of the linkgit:git[1] suite