The Wayback Machine - https://web.archive.org./web/20201027085552/https://docs.github.com/en/free-pro-team@latest/github/authenticating-to-github/testing-your-ssh-connection

Testing your SSH connection

After you've set up your SSH key and added it to your GitHub account, you can test your connection.

Did this doc help you?

Help us make these docs great!

All GitHub docs are open source. See something that's wrong or unclear? Submit a pull request.

Make a contribution

Or, learn how to contribute.

Before testing your SSH connection, you should have:

When you test your connection, you'll need to authenticate this action using your password, which is the SSH key passphrase you created earlier. For more information on working with SSH key passphrases, see "Working with SSH key passphrases".

  1. Open Terminal.

  2. Enter the following:

    $ ssh -T git@github.com
    # Attempts to ssh to GitHub

    You may see a warning like this:

    > The authenticity of host 'github.com (IP ADDRESS)' can't be established.
    > RSA key fingerprint is SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8.
    > Are you sure you want to continue connecting (yes/no)?
  3. Verify that the fingerprint in the message you see matches one of the messages in step 2, then type yes:

    > Hi username! You've successfully authenticated, but GitHub does not
    > provide shell access.
  4. Verify that the resulting message contains your username. If you receive a "permission denied" message, see "Error: Permission denied (publickey)".

Did this doc help you?

Help us make these docs great!

All GitHub docs are open source. See something that's wrong or unclear? Submit a pull request.

Make a contribution

Or, learn how to contribute.