Jason's Blog

November 19, 2024

How to Generate SSH-Key and Add it into SSH-Agent.

0.5 min to read

Genearate a new SSH-Key

ssh-keygen -t ed25519 -C "fanzhuoquan@gmail.com"

Copy

cat ~/.ssh/id_ed25519.pub
# Then select and copy the contents of the id_ed25519.pub file

Add it to git

在 GitHub 任意页面的右上角,单击个人资料照片,然后单击 “设置”****。

在边栏的“访问”部分中,单击 “SSH 和 GPG 密钥”。

单击“新建 SSH 密钥”或“添加 SSH 密钥” 。

在 "Title"(标题)字段中,为新密钥添加描述性标签。 例如,如果使用的是个人笔记本电脑,则可以将此密钥称为“个人笔记本电脑”。

选择密钥类型(身份验证或签名)。 有关提交签名的详细信息,请参阅“关于提交签名验证”。

在“密钥”字段中,粘贴公钥。

单击“添加 SSH 密钥”。

如果出现提示,请确认你的帐户是否拥有 GitHub 访问权限。 有关详细信息,请参阅“Sudo 模式”。