配置SSH Key连接GitLab

Git配置ssh连接相关命令:

1、配置账号

$ git config —global user.name "cwh"

$git config —global user.email "[email protected]"

邮箱需要GitLab上账号配置相对应的邮箱,否则拉取、或者更新不了项目代码

2、生成 SSH 密钥

$ ssh-keygen -t rsa -C “[email protected]

2.1 查看ssh公钥

$cat id_rsa.pub

2.2 ssh存放路径

~/.ssh

2.3在GitLab账号中心设置SSH Keys

3、克隆项目

$git clone [email protected]

或者项目涉及包含子项目则执行下面的命令

$git clone [email protected] --recursive

3.1测试ssh连接

$ssh -T [email protected]

3.2将克隆的项目直接拖到SoureTree进行打开

【参考】

  1. 使用SSH连接到GitHub
  2. GitLab配置ssh key
  3. sourceTree 添加 ssh key 方法
  4. sourceTree 添加 ssh key 方法

你可能感兴趣的:(配置SSH Key连接GitLab)