检查现有 SSH 密钥
在生成 SSH 密钥之前,您可以检查是否有任何现有的 SSH 密钥。
注: DSA 密钥在 OpenSSH 7.0 中被弃用。如果您的操作系统使用 OpenSSH,则在设置 SSH 时需要使用其他类型的密钥,例如 RSA 密钥。例如,如果您的操作系统为 MacOS Sierra,您可以使用 RSA 设置 SSH。
-
Open TerminalTerminalGit Bashthe terminal.
-
输入
ls -al ~/.ssh
以查看是否存在现有 SSH 密钥:$ ls -al ~/.ssh # 列出 .ssh 目录中的文件(如果有)
-
检查目录列表以查看是否已经有 SSH 公钥。
默认情况下,公钥的文件名是以下之一:
- id_dsa.pub
- id_ecdsa.pub
- id_ed25519.pub
- id_rsa.pub
- 如果您没有现有的公钥和私钥对,或者不想使用任何可用于连接到 GitHub 的密钥对,生成新的 SSH 密钥。
- 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, you can add your SSH key to the ssh-agent.
提示:如果您收到错误“~/.ssh 不存在”,不要担心! 我们在生成新的 SSH 密钥时会创建它。