1. 创建私钥:
ssh-keygen -t rsa -C '你注册的邮箱'
//或
ssh-keygen -t ed25519 -C "你注册的邮箱"
//或
ssh-keygen -o -t rsa -b 4096 -C "你注册的邮箱"
2. 保存文件路径,这里我保存到了/Users/本人用户/.ssh/id_ed25519
,默认不用输入
3. 输入密码:不输入可以留空
4. 结束显示信息,私钥和公钥位置
/Users/本人用户/.ssh/id_ed25519
/Users/本人用户/.ssh/id_ed25519.pub
5. 将公钥信息拷贝到剪贴板
mac: pbcopy < /Users/本人用户/.ssh/id_ed25519.pub
win: cat ~/.ssh/id_ed25519.pub | clip
格式如下
ssh-ed25519
生成的公钥
你的邮箱
6. 添加公钥到官网
https://gitlab.com/profile/keys
其他系统请参考官方教程:
https://gitlab.com/help/ssh/README.md