本人有两个git账号,一个gitlab的工作号,一个github的私人号,这就需要在windows下配置git多账号;

正文

1.生成git账号对应的私钥秘钥

1.1 生成gitlab账号公钥秘钥

C:\Users\iJarmin\.ssh(这个目录不绝对,因人而异)下打开git bash或cmd,执行命令ssh-keygen -t rsa -C user.email,例如ssh-keygen -t rsa -C xxxxxxxxx@xxx.com,然后命名为id_rsa_gitlab,输入密码(可以不设置,一直按回车)

ssh-keygen -t rsa -C xxxxxxxxx@xxx.com
1.1 生成github账号公钥秘钥

同样的目录下,执行命令ssh-keygen -t rsa -C user.email,然后命名为id_rsa_github,输入密码

ssh-keygen -t rsa -C xxxxxxxxx@xxx.com

2.将公钥加入到 gitlab/github 的SSH key中,这里只展示如何加入到github中

 
 
 
 
 
 

3.在.ssh目录创建一个config文件(没有后缀名),并完成相关配置

3.1创建文件

touch config
3.2进行配置

# github account
Host github.com
HostName github.com
User iJarmin
IdentityFile C:\\Users\\iJarmin\\.ssh\\id_rsa_github
IdentitiesOnly yes
PreferredAuthentications publickey

# gitlab account
Host gitlab.com
HostName gitlab.com
User iJarmin_lab
IdentityFile C:\\Users\\iJarmin\\.ssh\\id_rsa_gitlab
IdentitiesOnly yes
PreferredAuthentications publickey

4.进行测试是否成功

4.1 测试github

提示 you,re successfully authenticated,but Github does not provide shell access

4.2 测试gitlab

提示welcome to gitlab

5.已经可以git clone了!!!

扩展内容

ssh-keygen -t rsa -C user.email

-t rsa:-t即指定密钥的类型,密钥的类型有两种,一种是RSA,一种是DSA
-C:-C表示要提供一个新注释,用于识别这个密钥

config配置文件内容

HostName:这个是真实的域名地址
IdentityFile:这里是id_rsa的地址
PreferredAuthentications:配置登录时用什么权限认证–可设为publickey,password等
User:配置使用用户名

 

作者:李佳明先生
链接:https://www.jianshu.com/p/46759396ef65
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。