SourceTree 配置 GitLab

Posted android-dangdang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SourceTree 配置 GitLab相关的知识,希望对你有一定的参考价值。

生成SSH

  1. 创建SSH,执行ssh-keygen -t rsa -C "youremail@example.com",会在.ssh目录下生成id_rsaid_rsa.pub两个私钥和公钥。
 
技术图片
image.png
  • 有个路径需要填写 直接复制箭头部分就可以
  1. 通过cat ~/.ssh/id_rsa.pub查看公钥,并将公钥整体复制,配置到GitHub等后台。
     
    技术图片
    image.png

从头到尾都复制,放到key中 然后自动会生成 RW 钥匙那个样子

 
技术图片
image.png

配置本地SSH

  • 执行ssh-add ~/.ssh/id_rsa将sshkey添加到sourceTree(会输入密码)
  • 执行ssh-add -K ~/.ssh/id_rsa将sshkey添加到钥匙串
  • cd 到 .ssh目录下, 用touch config命令创建config文件
  • 执行open config, 打开config文件,输入以下内容并保存
Host *
   UseKeychain yes
   AddKeysToAgent yes
   IdentityFile ~/.ssh/id_rsa

打开Source Tree 克隆

 
技术图片

 
 

以上是关于SourceTree 配置 GitLab的主要内容,如果未能解决你的问题,请参考以下文章

sourcetree gitlab 配置ssh

SourceTree 配置 GitLab

怎么用sourcetree代码 上传到gitlab上

如何为 gitlab 集成 sourcetree

Git 生成SSH Key

3SourceTree通过SSH连接GitLab