转自:Github 官方文档:生成新的 SSH 密钥并将其添加到 ssh-agent
1、生成新 SSH 密钥,粘贴下面的文本(替换为您的 GitHub 电子邮件地址)。
执行过程中需要输入确认的地方直接按回车就行了
ssh-keygen -t ed25519 -C "[email protected]" # [email protected] 替换成你的 GitHub 电子邮件地址
注意:如果你使用的是不支持 Ed25519 算法的旧系统,请使用以下命令:
ssh-keygen -t rsa -b 4096 -C "[email protected]"
2、将 SSH 密钥添加到 ssh-agent
2.1 在后台启动 ssh 代理。
eval "$(ssh-agent -s)"
2.2 打开并编辑 ~/.ssh/config
文件
如果该文件不存在,直接创建一个即可,文件中新增以下内容,然后保存。
Host *.github.com
AddKeysToAgent yes
UseKeychain yes
IdentityFile ~/.ssh/id_ed25519
注意:
如果你选择不向密钥添加密码,应该省略 UseKeychain 行。
如果看到 Bad configuration option: usekeychain 错误,请在配置的 Host *.github.com 部分添加额外的一行。Host *.github.com
IgnoreUnknown UseKeychain
2.3 将 SSH 私钥添加到 ssh-agent 并将密码存储在密钥链中。
如果使用其他名称创建了密钥或要添加具有其他名称的现有密钥,请将命令中的 id_ed25519 替换为私钥文件的名称。
ssh-add --apple-use-keychain ~/.ssh/id_ed25519
3 将 SSH 密钥添加到 GitHub 上的帐户
3.1 将 SSH 公钥复制到剪贴板。
pbcopy < ~/.ssh/id_ed25519.pub
3.2 粘贴到 Github 的 setting-> SSH 和 GPG 密钥 的 key 编辑框中
3.3 点击保存,至此配置完毕
可以使用 git clone 来拉取自己有权限的包了。
标签:github,密钥,Mac,SSH,ed25519,com,ssh From: https://www.cnblogs.com/hi3254014978/p/17114458.html