Git 同一电脑配置多个远程仓库

2017-10-11  本文已影响273人  DreamerYZ

当一台电脑需要连接多个远程仓库的时候如何配置。如一个仓库需要连接github、另一个仓库需要谅解gitlab、还有一个仓库需要连接gitee等。
同一电脑配置多个仓库,如果仓库不为同一网站则使用同一个公钥即可。本文讲的是分开配置的方法

1.配置一个远程仓库

(1)生成ssh-key

Generating public/private ecdsa key pair.
Enter file in which to save the key (/home/username/.ssh/id_ecdsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /home/username/.ssh/id_ecdsa.
Your public key has been saved in /home/username/.ssh/id_ecdsa.pub.
The key fingerprint is:
dd:15:ee:24:20:14:11:01:b8:72:a2:0f:99:4c:79:7f username@localhost-2011-12-22
The key's randomart image is:
+--[ECDSA  521]---+
|     ..oB=.   .  |
|    .    . . . . |
|  .  .      . +  |
| oo.o    . . =   |
|o+.+.   S . . .  |
|=.   . E         |
| o    .          |
|  .              |
|                 |
+-----------------+

(2) 查看的公钥文件的实际内容,添加到对应的 远程仓库账户中

cat ~/.ssh/id_rsa.pub

参数解释

2. 配置多个远程仓库

生成三个ssh-key

# 可以采用如下方式 在第一个回车后输入名称
ssh-keygen -t rsa -C "yourmail@gmail.com
Generating public/private rsa key pair.
Enter file in which to save the key (/Users/QuQu/.ssh/id_rsa): id_rsa_gitlab

编辑config文件,配置不同的仓库指向不同的密钥文件

# github配置
Host github.com(可更改)// 主机名字,不能重名
    HostName github.com// 主机所在域名或IP
    User git// 用户名称
    PreferredAuthentications publickey
    IdentityFile ~/.ssh/id_rsa_github// 私钥路径
# github配置(第二个与第一个不是一个仓库但是同为github)
Host github2.com(可更改)// 主机名字,不能重名
    HostName github.com// 主机所在域名或IP
    User git// 用户名称
    PreferredAuthentications publickey
    IdentityFile ~/.ssh/id_rsa_github2// 私钥路径

# gitlab配置
Host gitlib.com(可更改)
    HostName gitlab.xxx.com(gitlab仓库域名)
    User  git
    PreferredAuthentications publickey
    IdentityFile ~/.ssh/id_rsa_github
# gitee配置
Host gitee.com(可更改)
    HostName gitee.com
    User  git
    PreferredAuthentications publickey
    IdentityFile ~/.ssh/id_rsa_github

清空本地的 SSH 缓存,添加新的 SSH 密钥 到 SSH agent中

# 如果在.ssh目录下可省略文件路径 :ssh-add id_rsa_github
ssh-add -D
ssh-add ~/.ssh/id_rsa_github
ssh-add ~/.ssh/id_rsa_gitlab

测试 ssh 链接

ssh -T git@github.com
ssh -T git@github2.com
ssh -T git@gitee.com
ssh -T git@gitlab.com
# xxx! You’ve successfully authenticated, but GitHub does not provide bash access.
# 出现上述提示,连接成功

取消 git 全局用户名/邮箱的设置,设置独立的 用户名/邮箱

# 取消全局 用户名/邮箱 配置
$ git config --global --unset user.name
$ git config --global --unset user.email
# 进入项目文件夹,单独设置每个repo 用户名/邮箱
$ git config user.email "xxxx@xx.com"
$ git config user.name "xxxx"

命令行进入项目目录,重建 origin (whatever 为相应项目地址)

$ git remote rm origin
# 远程仓库地址,注意Host名称
$ git remote add origin git@second.github.com:githubUserName/repName.git
$ git remote -v # 查看远程

# ssh -vT git@github.com可以打印log 通过此方法可以debug如果连接不成功

原理分析

  1. ssh 客户端是通过类似 git@github.com:githubUserName/repName.git 的地址来识别使用本地的哪个私钥的,地址中的 User 是@前面的git, Host 是@后面的github.com
  2. 如果所有账号的 User 和 Host 都为 git 和 github.com,那么就只能使用一个私钥。所以要对User 和 Host 进行配置,让每个账号使用自己的 Host,每个 Host 的域名解析到 github.com,如上面配置中的Host gitlab.com。
  3. 配置了别名之后,新的地址就是user@host:repName/repName.git(在添加远程仓库时使用)。
    这样 ssh 在连接时就可以区别不同的账号了。

使用新的公私钥

git clone git@gitlab.com:username/repo.git 
注意此时要把原来的github.com配置成你定义的github
修改仓库的配置文件:.git/config 为
[remote "origin"]
    url = git@gitlab.com:gitlabUserName/repName.git
上一篇下一篇

猜你喜欢

热点阅读