跳至主要内容

测试你的 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)”。