gitlab官方:https://gitlabbj.uniontech.com/help/user/ssh.md
本地用的rsa
1、创建一个新的ssh key:
ssh-keygen -t rsa -b 2048 -C "<comment>"
2、会出现:
Generating public/private ed25519 key pair.
Enter file in which to save the key (/home/user/.ssh/id_ed25519):
确认密钥文件,如果正确回车即可。
3、然后出现:
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
密钥密码;密钥口令,回车即可。
3、生成成功,查看密钥:
cd ~/.ssh
cat id_rsa.pub
id_rsa.pub替换为自己的文件名,可以
ls
先查看文件列表获取
4、将密钥携带着ssh-rsa开头粘贴到git账户中的ssh key设置区域进行添加操作
版权归原作者 hanccolo 所有, 如有侵权,请联系我们删除。