背景:
在公司电脑上配置了公司的git,现需要添加个人的github地址。
操作:
1、生成密钥文件:ssh-keygen -t rsa -C "your_email@example.com"
2、在github上添加,将1中生成的.pub文件内容拷贝进来即可:
3、在.ssh文件夹下建立config文件,输入命令:touch config,直接手动创建也可以,内容如下
# one(one@gmail.com)
Host 10....
HostName 10....
PreferredAuthentications publickey
IdentityFile C:\Users\Administrator\.ssh\id_rsa_one
User 11111@qq.com
# two(two@ gmail.com)
Host github.com
HostName github.com
PreferredAuthentications publickey
IdentityFile C:\Users\Administrator\.ssh\id_rsa_two
User 22222@qq.com
其中,
Host后面的名字可以随便起,就是命名
Hostname 是域名 或者ip ,第二个中是我在公司局域网的域名,已经在host文件中配置ip
PreferredAuthentications 验证方式,这里是公钥方式,还可以设置用密码等
IdentifyFile 是私钥 的文件地址
User 你的邮箱
4、检测3中的配置是否正确,一定要使用上面的格式,否则会报错:ssh -T git@github.com
5、添加到ssh-agent:ssh-add 密钥文件路径
搞定。