一、先安装git
注意以下操作在git命令行中进行 不是线上服务器 如下图:
1.检查本机是否有ssh key设置
$ cd ~/.ssh 或cd .ssh
如果没有则提示: No such file or directory
如果有则进入~/.ssh路径下(ls查看当前路径文件,rm * 删除所有文件)
下图是有的情况
没有的情况
没有的话生成key 具体方法如下:
1、使用Git Bash生成新的ssh key。
$ cd ~ #保证当前路径在”~”下
输入命令 ssh-keygen -t rsa -C "xxxxxx@yy.com"
例如ssh-keygen -t rsa -C "3352096487@qq.com"
注意在回车后会提示一些东西可以不填
Generating public/private rsa key pair.Enter file in which to save the key (/c/Users/xxxx_000/.ssh/id_rsa): #不填直接回车Enter passphrase (empty for no passphrase): #输入密码(可以为空)Enter same passphrase again: #再次确认密码(可以为空)Your identification has been saved in /c/Users/xxxx_000/.ssh/id_rsa. #生成的密钥Your public key has been saved in /c/Users/xxxx_000/.ssh/id_rsa.pub. #生成的公钥The key fingerprint is:e3:51:33:xx:xx:xx:xx:xxx:61:28:83:e2:81 xxxxxx@yy.com
添加ssh key到GItHub
3.1 登录GitHub系统;点击右上角账号头像的“▼”→Settings→SSH kyes→Add SSH key。
把以.pub的文件打开复制出来 放在上图的key框中
$ git config --global user.name “your_username” #设置用户名
$ git config --global user.email “your_registered_github_Email” #设置邮箱地址
测试ssh keys是否设置成功。
ssh -T git@gitlab.dinglc.com.cn这个是你项目的存放地址
The authenticity of host 'gitlab.dinglc.com.cn (139.224.114.55)' can't be established.
ECDSA key fingerprint is SHA256:9rE8HXNT+n1orODkm/85Zer9+vI1oeqiOV3KMdopgjI.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'gitlab.dinglc.com.cn,139.224.114.55' (ECDSA) to the list of known hosts.
Welcome to GitLab, 李鹏!
Enter passphrase for key '/c/Users/xxxx_000/.ssh/id_rsa': #生成ssh kye是密码为空则无此项,若设置有密码则有此项且,输入生成ssh key时设置的密码即可。
Hi xxx! You've successfully authenticated, but GitHub does not provide shell access. #出现这句话,说明设置成功。
网友评论