使用命令
ssh-add -l
显示ssh-agent中的密钥
如果出现Error connecting to agent: No such file or directory
执行以下命令
1. Set-Service ssh-agent -StartupType Manual
2. Start-Service ssh-agent
这时执行ssh-add -l
应该显示如下信息
The agent has no identities.
把专用密钥添加到 ssh-agent 的高速缓存中:
ssh-add id_rsa
ssh-add id_rsa_github
测试
ssh -T git@gitlab中配置的hostname
如果出现Welcome to GitLab, 某某某!
则gitlab配置成功
ssh -T git@github.com
如果出现
Hi 某某某! You've successfully authenticated, but GitHub does not provide shell access.
则github配置成功