跳至主要内容

测试你的 SSH 连接

在设置 SSH 密钥并将其添加到 GitHub 后,你可以测试你的连接。

平台导航

在测试你的 SSH 连接之前,你应该已经

你需要使用你的密码来验证此操作,该密码是你之前创建的 SSH 密钥密码。请参阅 "使用 SSH 密钥密码”。

  1. 打开 终端终端Git Bash

  2. 输入以下内容

    Shell
    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)?
    
  3. 验证你看到的邮件中的指纹是否与 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 退出。

  4. 验证生成的邮件中是否包含您的用户名。如果您收到“权限被拒绝”的提示,请查看“错误:权限被拒绝 (publickey)”。