有时我们本地git又要连接github,又要连接gitlab,而且ssh配置中的邮箱不一样,这个时候应该怎么办呢?
1、第一次创建SSH,参考https://blog.csdn.net/qq_31010739/article/details/83899538这个对应一组 id_rsa和id_rsa.pub ;
2、再次生成第二组的时候注意在创建SSH的时,
Generating public/private rsa key pair.
# Enter file in which to save the key (/c/Users/you/.ssh/id_rsa): [Press enter]
注意输入文件名称(否则会覆盖第一次的),生成一组yin_187和yin_187.pub;
3、在C:/Users/you/.ssh文件下创建config文件
# 默认的 gitlab 用户
Host gitlab.com
HostName gitlab.com
User git
IdentityFile ~/.ssh/id_rsa
# 使用的 github 用户
# 建一个github别名,新建的帐号使用这个别名做克隆和更新
Host github11
HostName github.com
User git
IdentityFile ~/.ssh/yin_187
4、分别复制SSH到gitlab和github上Add SSHkey
$ clip < ~/.ssh/id_rsa.pub
$ clip < ~/.ssh/yin_187.pub
5、用git克隆远程仓库
今后,只需要在 git clone 的时候替换服务器部分为别名即可,即把 git@github.com:YinHAHA/FrescoDemo.git替换为 github11:YinHAHA/FrescoDemo.git。可以测试一下:
$ ssh -T github11