解决方案地址:https://help.github.com/cn/github/authenticating-to-github/error-permission-denied-publickey
操作过程中出现的的问题:
- 确认您的私钥已生成并加载到 SSH 命令:ssh-add -l
- 问题1:Could not open a connection to your authentication agent.
解决方案:执行命令 ssh-agent bash
- 问题2:The agent has no identities.
解决方案:执行命令 ssh-agent bash
- 问题3:The agent has no identities.
密钥列表为空,所以要添加我的密钥,使用命令:ssh-add id_rsa
再次查看,如下,添加成功:
- 另外当我们进行git操作时 遇到 remote: User permission denied 问题
我们需要清除残存的干扰账号,运行下列清除用户名密码的指令
git credential-manager uninstall
然后再重新设置账号密码即可