SourceTree 配置本地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

你可能感兴趣的:(SourceTree 配置本地SSH)