1

私は2つの異なるgitリポジトリを指しています

git@github.com:blah/foo.git
git@mycompany.com:random/bar.git

2 つの異なる SSH 公開キーを github.com と mycompany.com にプッシュします コードをそれぞれの git リポジトリにプッシュするとき、git の user.name プロパティと user.email プロパティを設定する必要があります。リポジトリごとに異なる名前/メールを設定するにはどうすればよいですか。

4

1 に答える 1

0
$> git config user.mail "mail@a.c"
$> git config user.name o
$> cat .git/config
[user]
    mail = mail@a.c
    name = o

https://help.github.com/articles/setting-your-email-in-git

于 2012-10-23T15:31:56.017 に答える