From: Evan Broder Date: Mon, 22 Dec 2008 17:41:40 +0000 (-0500) Subject: Use an authors file to fill in committer identities. X-Git-Url: http://xvm.mit.edu/gitweb/invirt/scripts/git-migration.git/commitdiff_plain/37182158cf8b32cc011e99cbcb8ae81da21274c6 Use an authors file to fill in committer identities. svn path=/trunk/scripts/git-migration/; revision=1871 --- diff --git a/authors b/authors new file mode 100644 index 0000000..70f280e --- /dev/null +++ b/authors @@ -0,0 +1,13 @@ +andersk = Anders Kaseorg +broder = Evan Broder +ecprice = Eric Price +geofft = Geoffrey Thomas +hartmans = Sam Hartman +mitchb = Mitchell Berger +neboat = Tao Ben Schardl +nelhage = Nelson Elhage +price = Greg Price +quentin = Quentin Smith +tabbott = Tim Abbott +y_z = Yang Zhang +zev = Zev Benjamin diff --git a/git-migrate b/git-migrate index e6192a5..aac76df 100755 --- a/git-migrate +++ b/git-migrate @@ -8,6 +8,7 @@ def clonePackage(base, pkg): # Use --no-follow-parent because we're going to handle that with # grafts. subprocess.check_call(['git', 'svn', 'clone', '--no-follow-parent', + '-Aauthors', '--no-metadata', '%s/packages/%s' % (base, pkg)], stdout=subprocess.PIPE)