Lines Matching +full:e +full:- +full:mail
2 # SPDX-License-Identifier: GPL-2.0+
16 (See 'man git-shortlog' for furthur information of this feature.)
38 -----
58 toplevel = subprocess.check_output(['git', 'rev-parse', '--show-toplevel'])
71 shortlog = subprocess.check_output(['git', 'shortlog', '-s', '-n'])
84 shortlog = subprocess.check_output(['git', 'shortlog', '-s', '-n', '-e'])
90 # tmp, mail = line.rsplit(None, 1) is not safe
92 tmp, mail = line.split('<') variable
93 mail = '<' + mail.rstrip() variable
99 if mail in mail_vs_name:
101 prev_name = mail_vs_name[mail]
105 mail_vs_name[mail] = major_name
107 output[mail] = major_name
109 mail_vs_name[mail] = name
152 for mail, name in output.items():
153 output_lines.append(name + ' ' + mail + '\n')