一、生成SSH
执行ssh-keygen -t rsa -C "youremail@example.com,会在.ssh目录下生成id_rsa、id_rsa.pub两个文件私钥和公钥
ssh生成截图
通过cat ~/.ssh/id_rsa.pub查看公钥,并将公钥整体复制,配置到GitHub等后台。
公钥
从头到尾都复制,放到key中 然后自动会生成 RW 钥匙那个样子
复制公钥到github
复制生成后
二、配置本地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
三、公钥信任
执行ssh命令链接一下git服务器,进行公钥信任
公钥信任
四、打开Source Tree克隆