Home | History | Annotate | Download | only in scripts

Lines Matching refs:mailmap

7 A tool to create/update the mailmap file
14 spelled differently. The .mailmap feature can be used to coalesce together
18 This tool helps to create/update the mailmap file.
25 here because we do not want to create a fat mailmap by adding every author
28 If there exists a mailmap file specified by the mailmap.file configuration
29 options or '.mailmap' at the toplevel of the repository, it is used as
30 a base file. (The mailmap.file configuration takes precedence over the
31 '.mailmap' file if both exist.)
44 scripts/mailmapper > tmp; mv tmp .mailmap
46 will be useful for updating '.mailmap' file.
54 # This limitation is used so as not to create a too big mailmap file.
111 # [1] If there exists a mailmap file at the location pointed to
112 # by the mailmap.file configuration option, update it.
113 # [2] If the file .mailmap exists at the toplevel of the repository, update it.
114 # [3] Otherwise, create a new mailmap file.
118 config_mailmap = subprocess.check_output(['git', 'config', 'mailmap.file'])
126 mailmap_files.append('.mailmap')