首页 > 其他 > 详细

git配置多个公钥秘钥问题

时间:2020-01-07 22:01:57      阅读:191      评论:0      收藏:0      [点我收藏+]

git配置多个公钥秘钥问题

标签(空格分隔): git

# 生成公钥秘钥
ssh-keygen -t rsa -C "xx@xx.com"

第一种解决

1.ssh-add ~/.ssh/gitee_id_rsa
报错:Could not open a connection to your authentication agent
2.ssh-agent bash
3.ssh-add ~/.ssh/gitee_id_rsa

第二种解决

创建config文件
vim ~/.ssh/config
User user1
IdentityFile ~/.ssh/id_rsa

User user2
IdentityFile ~/.ssh/gitee_id_rsa
:wq

Host:仓库网站的别名,随意取
HostName:仓库网站的域名(PS:IP 地址应该也可以)
User:仓库网站上的用户名
IdentityFile:私钥的绝对路径

git配置多个公钥秘钥问题

原文:https://www.cnblogs.com/yanweifeng/p/12163481.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!