From 37182158cf8b32cc011e99cbcb8ae81da21274c6 Mon Sep 17 00:00:00 2001 From: Evan Broder Date: Mon, 22 Dec 2008 12:41:40 -0500 Subject: [PATCH 1/1] Use an authors file to fill in committer identities. svn path=/trunk/scripts/git-migration/; revision=1871 --- authors | 13 +++++++++++++ git-migrate | 1 + 2 files changed, 14 insertions(+) create mode 100644 authors 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) -- 1.7.9.5