git clone时出现Please make sure you have the correct access rights and the repository exists.错误

使用git clone命令从github上同步github上的代码库时,如果使用SSH链接),而你的SSH key没有添加到github帐号设置中,系统会报下面的错误:

git clone时出现Please make sure you have the correct access rights and the repository exists.错误_第1张图片

这是因为没有在本地创建SSH Key,此时需要在本地创建SSH key,然后将生成的SSH key文件内容添加到github帐号上去。创建SSH key的方法很简单,生成ssh key的过程如下:

①输入$ ssh-keygen.exe -b 2048,然后一路回车。

git clone时出现Please make sure you have the correct access rights and the repository exists.错误_第2张图片

②打开/c/Users/LYR/.ssh,打开id_rsa.pub(最好不要用电脑自带的文件编辑器).,复制所有的内容。


③将公钥添加到你的git账号中

git clone时出现Please make sure you have the correct access rights and the repository exists.错误_第3张图片

git clone时出现Please make sure you have the correct access rights and the repository exists.错误_第4张图片

这样就可以clone文件了。

你可能感兴趣的:(研发管理)