Git配置ssh连接相关命令:
1、配置账号
$ git config —global user.name "cwh"
$git config —global user.email "cwh@xxx.com"
邮箱需要GitLab上账号配置相对应的邮箱,否则拉取、或者更新不了项目代码
2、生成 SSH 密钥
$ ssh-keygen -t rsa -C “cwh@xxx.com”
2.1 查看ssh公钥
$cat id_rsa.pub
2.2 ssh存放路径
~/.ssh
2.3在GitLab账号中心设置SSH Keys
3、克隆项目
$git clone git@xxx.git
或者项目涉及包含子项目则执行下面的命令
$git clone git@xxx.git --recursive
3.1测试ssh连接
$ssh -T git@xxx.git
3.2将克隆的项目直接拖到SoureTree进行打开
【参考】
- 使用SSH连接到GitHub
- GitLab配置ssh key
- sourceTree 添加 ssh key 方法
- sourceTree 添加 ssh key 方法
版权归原作者 程序员小橙 所有, 如有侵权,请联系我们删除。