为 GitHub 创建 SSH 密钥?
我在为 GitHub 创建密钥时遇到问题。我按照 如何使用 TortoiseGit 的说明进行操作。
为 GitHub 创建 SSH 密钥:
- 打开 PuTTygen,生成密钥并保存您的私钥。在文本区域中标记密钥并将其粘贴到您的 github 帐户设置中(SSH 公钥→添加另一个公钥)。查看 PuTTygen 的 GitHub SSH 指南(顺便将密码保持为空)(在 GitHub 上为您的密钥提供任意名称)
- 启动 pageant 并通过右键单击图标并选择“添加密钥”来添加您的私钥,加载保存的密钥在上一步中,
我在步骤 1 中遇到了问题。我不知道如何“在文本区域中标记密钥并将其粘贴到您的 github 帐户设置中”。
谢谢
I am having trouble creating keys for GitHub. I am following the instructions from How to use TortoiseGit.
At Creating a SSH key for GitHub:
- Open PuTTygen, generate a key and save your private key. Mark the key in the text area and paste it into your github account settings (SSH Public Keys→Add another public key). Check out the GitHub SSH guide for PuTTygen (keep your passphrase empty by the way) (give your key any name on GitHub)
- Start pageant and add your private key by right clicking on the icon and choosing “Add Key”, load the key saved in the previous step
I am having trouble at step 1. I don't know how to "Mark the key in the text area and paste it into your github account settings".
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
登录www.github.com,然后在右上角有一个标题为“帐户设置”的链接,点击后,页面左侧有一个列表,单击“SSH”公钥”。
Log into www.github.com, then in the top right hand corner there is a link entitled "Account Settings", then after clicking it, there is a list on the left hand side of the page, click the one that says "SSH Public Keys".
登录 SSH 密钥:http
Membuat SSH KEY : http
按照此命令行添加 ssh 密钥以避免身份验证(linux、windows、mac):
就我而言:ssh-keygen -t ed25519 -C "[电子邮件受保护] ”
仅此而已。
Follow this command line for adding ssh key to avoid authentication(linux, windows, mac):
in my case: ssh-keygen -t ed25519 -C "[email protected]"
That's all.