diff options
author | Brian Harring <ferringb@google.com> | 2012-10-14 15:56:29 -0700 |
---|---|---|
committer | Brian Harring <ferringb@google.com> | 2012-10-16 13:28:49 -0700 |
commit | 901721097cd3cf4a7c23a0e1d15767f5defe727a (patch) | |
tree | 1bdb14a1cfff83b949ff481885cd25f620d692c5 /config | |
parent | Ongoing mangling (diff) | |
download | git-conversion-tools-901721097cd3cf4a7c23a0e1d15767f5defe727a.tar.gz git-conversion-tools-901721097cd3cf4a7c23a0e1d15767f5defe727a.tar.bz2 git-conversion-tools-901721097cd3cf4a7c23a0e1d15767f5defe727a.zip |
update gitignore for intermediate/resultant content
Diffstat (limited to 'config')
-rw-r--r-- | config | 17 |
1 files changed, 6 insertions, 11 deletions
@@ -481,17 +481,12 @@ ctx.retain_conflicting_attic_files = False # with "u" as a prefix) or 8-bit strings in the utf-8 encoding. # Please substitute your own project's usernames here to use with the # author_transforms option of GitOutputOption below. -author_transforms={ - 'jrandom' : ('J. Random', 'jrandom@example.com'), - 'mhagger' : ('Michael Haggerty', 'mhagger@alum.mit.edu'), - 'brane' : (u'Branko Čibej', 'brane@xbc.nu'), - 'ringstrom' : ('Tobias Ringström', 'tobias@ringstrom.mine.nu'), - 'dionisos' : (u'Erik Hülsmann', 'e.huelsmann@gmx.net'), - - # This one will be used for commits for which CVS doesn't record - # the original author, as explained above. - 'cvs2svn' : ('cvs2svn', 'admin@example.com'), - } + +import gentoo_mailmap +author_transforms = gentoo_mailmap.mailmap.copy() +# This one will be used for commits for which CVS doesn't record +# the original author, as explained above. +author_transforms['cvs2svn'] = ('cvs2svn', 'admin@gentoo.org') # This is the main option that causes cvs2svn to output to a # "fastimport"-format dumpfile rather than to Subversion: |