tmyam's blog

time run off...

一个客户端设置多个github账号

前言

最近遇到了这样的需求,需要在一台电脑上同时使用两个github账号,负责不同的用途,所以搜索了一些文章,进行了一下实践。

1.前期工作

  • 至少有两个github账号 (假设有两个账号 一个为 one ,另一个为 two)
  • 取消git全局设置
1
2
git config --global --unset user.name
git config --global --unset user.email

2.SSH配置

  • 生成 id_rsa 私钥 , id_rsa.pub 公钥
    one可以直接回车,默认生成id_rsa和id_rsa.pub。
1
ssh-keygen -t rsa -C "one@126.com"

但是two会出现提示输入文件名,输入与默认配置不一样的文件名,比如: id_rsa_two。

1
2
cd ~/.ssh
ssh-keygen -t rsa -C "two@126.com"  # 之后会提示输入文件名
  • github添加公钥 id_rsa.pub , id_rsa_two.pub
    分别登陆one,two的账号,在 Account SettingsSSH Keys 里,点 Add SSH Keys ,将公钥(.pub文件)中的内容粘贴到”Key”中,并输入”Title”.

  • 添加 ssh key

1
2
ssh-add -K ~/.ssh/id_rsa        # 使用-K可以将私钥添加到钥匙串,不用每次开机后还要再次输入这条命令了
ssh-add -K ~/.ssh/id_rsa_two

可以在添加前使用下面命令删除所有的key

1
ssh-add -D

最后可以通过下面命令,查看key的设置

1
ssh-add -l

修改ssh config文件

1
2
cd ~/.ssh/
touch config

打开.ssh文件夹下的config文件,进行配置

1
2
3
4
5
6
7
8
9
10
11
# default
Host github.com
HostName github.com
User git
IdentityFile ~/.ssh/id_rsa

# two
Host two.github.com  # 前缀名可以任意设置
HostName github.com
User git
IdentityFile ~/.ssh/id_rsa_two

这里必须采用这样的方式设置,否则push时会出现以下错误:

ERROR: Permission to two/two.github.com.git denied to one.

简单分析下原因,我们可以发现 ssh 客户端是通过类似:
git@github.com:one/one.github.com.git
这样的 git 地址中的 User 和 Host 来识别使用哪个本地私钥的。
很明显,如果 User 和 Host 始终为 git 和 github.com,那么就只能使用一个私钥。
所以需要上面的方式配置,每个账号使用了自己的 Host,每个 Host 的域名做 CNAME 解析到 github.com,这样 ssh 在连接时就可以区别不同的账号了。

1
2
3
4
ssh -T git@github.com        # 测试one ssh连接
#Hi ***! You've successfully authenticated, but GitHub does not provide shell access.
ssh -T git@two.github.com    # 测试two ssh连接
#Hi ***! You've successfully authenticated, but GitHub does not provide shell access.

但是这样还没有完,下面还有关联的设置。

新建git项目或者clone已有的项目

  • 可以用 git init 或者 git clone 创建本地项目
  • 分别在onetwo的git项目目录下,使用下面的命令设置账号关联
1
2
git config user.name "__name__"            # __name__ 例如 one
git config user.email "__email__"          # __email__ 例如 one@126.com

查看git项目的配置

1
git config --list

查看one的remote.origin.url=git@github.com:one/one.github.com.git
查看two的remote.origin.url=git@github.com:two/two.github.com.git
由于one使用的是默认的Host,所以不需要修改,但是two使用的是two.github.com,则需要进行修改

1
2
git remote rm origin
git remote add origin git@two.github.com:two/two.github.com.git

上传更改

  • 上面所有的设置无误后,可以修改代码,然后上传了。
1
2
3
git add -A
git commit -m "your comments"
git push

如果遇到warning

warning: push.default is unset; its implicit value is changing in Git 2.0 from ‘matching’ to ‘simple’. To squelch this messageand maintain the current behavior after the default changes, use…

推荐使用下面命令设置。

1
git config --global push.default simple

参考

http://blog.csdn.net/wzy_1988/article/details/19967465
http://testerhome.com/topics/752
http://hily.me/blog/2013/05/github-multiple-account-and-multiple-repository/

评论