关于在同一个电脑上用设置多个git ssh key需要注意的点
程序员文章站
2024-03-21 20:17:16
...
在同一个电脑上用设置多个ssh key需要注意的点
在克隆项目时出现这个错误
ERROR: Repository not found.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
接下来检查了本地git的ssh key确实已经添加到了github的设置里面,
前提背景是本地不止有一个ssh key,
因为要一个给公司仓库用一个要自己的github用,
第一 个ssh key没有问题,第二个就一直报上述错误
后来查阅了一些资料,解决方法: 在 .ssh 目录创建 config 文件(无后缀)并完成相关配置
# 配置github.com
Host github.com
HostName github.com
IdentityFile ~/.ssh/id_rsa_github
# 配置git.oschina.net
Host git.oschina.net
HostName git.oschina.net
IdentityFile ~/.ssh/id_rsa_oschina
注释
配置项 | 注释 |
---|---|
HostName | 真实的域名地址 |
IdentityFile | 这里是id_rsa的地址(写到ssh所在的目录/ssh的私钥名 也就是公钥去掉.pub) |
User | 配置使用用户名 |
测试
ssh -T [email protected]
若出现
Hi XXX! You've successfully authenticated, but GitHub does not provide shell access.
则表示成功。
若出现
permission denied (publickey)
请检查github的ssh管理里添加的公钥是否正确