检查现有 SSH 密钥
在生成 SSH 密钥之前,您可以检查是否有任何现有的 SSH 密钥。
注意:DSA 密钥在 OpenSSH 7.0 中已废弃。如果您的操作系统使用 OpenSSH ,您需要在设置 SSH 时使用另一种类型的密钥,如 RSA 密钥。 例如,如果您的操作系统是 macOS Sierra,您可以使用 RSA 密钥设置SSH。
-
打开 Terminal(终端)Terminal(终端)Git Bash。
-
输入
ls -al ~/.ssh
以查看是否存在现有 SSH 密钥:$ ls -al ~/.ssh # 列出 .ssh 目录中的文件(如果有)
-
检查目录列表以查看是否已经有 SSH 公钥。 默认情况下,公钥的文件名是以下之一:
- id_rsa.pub
- id_ecdsa.pub
- id_ed25519.pub
- id_dsa.pub
If you don't have an existing public and private key pair, or don't wish to use any that are available to connect to GitHub Enterprise, then generate a new SSH key.
If you see an existing public and private key pair listed (for example id_rsa.pub and id_rsa) that you would like to use to connect to GitHub Enterprise, you can add your SSH key to the ssh-agent.
提示:如果您收到错误“~/.ssh 不存在”,不要担心! 我们在生成新的 SSH 密钥时会创建它。