Lines Matching refs:author
3 # script to extract commit author's name from standard input. The
10 # tie with longer author name. Among the all author names extract the
15 # git log --format=%aN:%aE | sort | uniq | ./author.py > authors
22 author, email = line.strip().split(':', 1)
25 if len(an) < len(author) or an > author:
27 'eliminated {} in favor of {}\n'.format(an, author))
28 edict[email] = author
31 'eliminated {} in favor of {}\n'.format(author, an))
33 edict[email] = author