在测试你的 SSH 连接之前,你应该已经
你需要使用你的密码来验证此操作,该密码是你之前创建的 SSH 密钥密码短语。请参阅 "使用 SSH 密钥密码短语"。
-
打开 终端终端Git Bash.
-
输入以下内容
Shell ssh -T [email protected] # Attempts to ssh to GitHub
ssh -T [email protected] # Attempts to ssh to GitHub
你可能会看到类似这样的警告
> The authenticity of host 'github.com (IP ADDRESS)' can't be established. > ED25519 key fingerprint is SHA256:+DiY3wvvV6TuJJhbpZisF/zLDA0zPMSvHdkr4UvCOqU. > Are you sure you want to continue connecting (yes/no)?
-
验证你看到的邮件中的指纹是否与 GitHub 的公钥指纹 相匹配。如果匹配,则输入
yes
> Hi USERNAME! You've successfully authenticated, but GitHub does not > provide shell access.
你可能会看到此错误消息
... Agent admitted failure to sign using the key. debug1: No more authentication methods to try. Permission denied (publickey).
这是某些 Linux 发行版中的已知问题。有关更多信息,请参阅 "错误:代理承认签名失败"。
注意:远程命令应以代码 1 退出。
-
验证结果消息中是否包含你的用户名。如果你收到“权限被拒绝”消息,请参阅 "错误:权限被拒绝 (publickey)"。