From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Original-To: poffice@blade.nagaokaut.ac.jp Delivered-To: poffice@blade.nagaokaut.ac.jp Received: from kankan.nagaokaut.ac.jp (smtp.nagaokaut.ac.jp [133.44.2.24]) by blade.nagaokaut.ac.jp (Postfix) with ESMTP id 902B21A80009 for ; Tue, 19 Jul 2016 18:17:05 +0900 (JST) Received: from voscc.nagaokaut.ac.jp (voscc.nagaokaut.ac.jp [133.44.1.100]) by kankan.nagaokaut.ac.jp (Postfix) with ESMTP id 3B5A6B5D83B for ; Tue, 19 Jul 2016 18:51:10 +0900 (JST) Received: from neon.ruby-lang.org (neon.ruby-lang.org [221.186.184.75]) by voscc.nagaokaut.ac.jp (Postfix) with ESMTP id DCE4E18CC7ED for ; Tue, 19 Jul 2016 18:51:10 +0900 (JST) Received: from neon.ruby-lang.org (localhost [IPv6:::1]) by neon.ruby-lang.org (Postfix) with ESMTP id DF60612044D; Tue, 19 Jul 2016 18:51:10 +0900 (JST) X-Original-To: ruby-core@ruby-lang.org Delivered-To: ruby-core@ruby-lang.org Received: from dcvr.yhbt.net (dcvr.yhbt.net [64.71.152.64]) by neon.ruby-lang.org (Postfix) with ESMTPS id 83A36120421 for ; Tue, 19 Jul 2016 18:51:06 +0900 (JST) Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 8810E1F744; Tue, 19 Jul 2016 09:51:04 +0000 (UTC) Date: Tue, 19 Jul 2016 09:51:04 +0000 From: Eric Wong To: ruby-core@ruby-lang.org Message-ID: <20160719095104.GA2446@starla> References: MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: X-ML-Name: ruby-core X-Mail-Count: 76444 Subject: [ruby-core:76444] Re: [Ruby trunk Feature#11741] Migrate Ruby to Git from Subversion X-BeenThere: ruby-core@ruby-lang.org X-Mailman-Version: 2.1.15 Precedence: list Reply-To: Ruby developers List-Id: Ruby developers List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ruby-core-bounces@ruby-lang.org Sender: "ruby-core" naruse@airemix.jp wrote: > On a Subversion repository imported into GitHub the commit author mail address is username@repository-UUID. > Once people can assign such mail address, but GitHub reject people assign such pseudo address now. I think svn.authorsProg of git-svn can help map users to @ruby-lang.org addresses easily: AUTHORS_PROG=/path/to/authors-at-ruby-lang.org cat >"$AUTHORS_PROG" <<\EOF #!/bin/sh username=$1 echo "$username <$username@ruby-lang.org>" EOF git config svn.authorsProg "$AUTHORS_PROG" # Then run "git svn fetch" as usual I haven't used this feature myself :x but let me + git@vger.kernel.org know if it breaks.