注意:DSA 密钥在 OpenSSH 7.0 中已废弃。如果您的操作系统使用 OpenSSH ,您需要在设置 SSH 时使用另一种类型的密钥,如 RSA 密钥。 例如,如果您的操作系统是 macOS Sierra,您可以使用 RSA 密钥设置SSH。
-
打开 Terminal(终端)Terminal(终端)Git Bash。
-
输入
ls -al ~/.ssh
以查看是否存在现有 SSH 密钥:$ ls -al ~/.ssh # Lists the files in your .ssh directory, if they exist
-
检查目录列表以查看是否已经有 SSH 公钥。 默认情况下,公钥的文件名是以下之一:
- id_rsa.pub
- id_ecdsa.pub
- id_ed25519.pub
- id_dsa.pub
如果您没有现有的公钥和私钥对,或者不想使用任何可用于连接到 GitHub Enterprise 的密钥对,则生成新的 SSH 密钥。
如果您看到列出的现有公钥和私钥对(例如 id_rsa.pub 和 id_rsa),并且您希望使用它们连接到 GitHub Enterprise,则可以将 SSH 密钥添加到 ssh-agent。
提示:如果您收到错误“~/.ssh 不存在”,不要担心! 我们在生成新的 SSH 密钥时会创建它。