? GitLab配置ssh key
Posted zhuyuliang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了? GitLab配置ssh key相关的知识,希望对你有一定的参考价值。
? GitLab配置ssh key
硬件:
MacBook Pro
需求:
系统生成Key,并配置到GitLab上
步骤:
1.本地生成ssh公钥和私钥对
2.查看本机ssh公钥
3.在GitLab增加SSH Kyes
1.本地生成ssh公钥和私钥对
ssh-keygen -t rsa -C 'xxx@xxx.com' 然后一路回车(-C 参数是你的邮箱地址)
Enter file in which to save the key (/Users/steve/.ssh/id_rsa): 回车
出现:
/Users/steve/.ssh/id_rsa already exists.
表示.ssh/id_rsa已经
输入:y (重新覆盖)
输入:n (不覆盖)
设置你的密码(位数不要太短,尽量设置6位)
2.查看本机ssh公钥
cat ~/.ssh/id_rsa.pub
3.在GitLab增加SSH Kyes
以上是关于? GitLab配置ssh key的主要内容,如果未能解决你的问题,请参考以下文章