1、如果已经存在ssh Key
终端输入
ssh-keygen
一路回车,最后会看到一个矩形的图案。
你这时ls是看不到.ssh文件夹的。
cd .ssh/
这样就会切换到.ssh,再ls
就会看到id_rsa 和id_rsa.pub
open ./
就会打开这个文件夹了。
现在你可以发id_rsa.pub给你的上司大哥了。
2、如果没有ssh key
当你git clone的时候显示如下
Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rightsand the repository exists.
1).首先打开linux服务器,输入命令:ls -al ~/.ssh,检查是否显示有id_rsa.pub或者id_dsa.pub存在,如果存在请直接跳至第3步。
2).在bash中输入ssh-keygen -t rsa -C ”yourEmail@example.com”,注意这个地方的邮箱地址地址替换成你自己的邮箱地址即可,在显示如下的输出后一直按回车即可:
3).打开id_rsa.pub文件,并且复制全部内容。
sourcetree使用
https://www.jianshu.com/p/5be78fd1b0cb
网友评论