sourcetree连接gitee码云仓库记录

1.生成/添加SSH公钥

ls -al ~/.ssh //查看本地是否已经存在SSH Key(出现id_rsa.pub 和 id_dsa.pub两个文件则说明已存在,跳过下一步)
 ssh-keygen -t rsa -C "[email protected]"  //生成SSH Key(按照提示完成三次回车,即可生成 ssh key)
 pbcopy < ~/.ssh/id_rsa.pub   //复制SSH Key

sourcetree连接gitee码云仓库记录_第1张图片
2.复制生成后的 ssh key,通过仓库主页 「管理」->「部署公钥管理」->「添加部署公钥」 ,添加生成的 public key 添加到仓库中。
sourcetree连接gitee码云仓库记录_第2张图片

3.添加后,在终端(Terminal)中输入

ssh -T [email protected]

在这里插入图片描述

4.添加成功后,就可以使用SSH协议对仓库进行操作了
sourcetree连接gitee码云仓库记录_第3张图片
sourcetree连接gitee码云仓库记录_第4张图片

你可能感兴趣的:(sourcetree连接gitee码云仓库记录)