当前位置:   article > 正文

解决git Could not read from remote repository.Please make sure you have the correct access rights_fatal: could not read from remote repository. plea

fatal: could not read from remote repository. please make sure you have the

1.初次使用git时,总会碰到很多莫名的错误,然后无从下手。最近从代码库coding的私有项目建立个数有限后,就开始转移到gitos了,可以说是非常好用的了

该错误提示如图
这里写图片描述

出现该错误原因在于没有在github上的设置中 填写公钥信息SSH key,需要自行生成并填入

2.首先在termital终端输入

ssh-keygen -t rsa -C "username" (注:username为你git上的用户名)
  • 1

3.对于提示信息全部按下Enter键

最后会出现下面的信息图

Your identification has been saved in /Users/username/.ssh/id_rsa.

Your public key has been saved in /Users/username/.ssh/id_rsa.pub.

The key fingerprint is:

58:42:8b:58:ad:4b:b5:b9:6d:79:bf:8c:f9:e2:2b:ed
username

The key’s randomart image is:

±-[ RSA 2048]----+

| … |

| o oo. |

| . .ooo. |

| o o+ |

| . …oS. |

| . . + . |

| . o . |

| . o+. |

| +E++. |

±----------------+

4.这说明SSH key就已经生成了。文件目录就是:/Users/username/.ssh/id_rsa.pub.

也有可能这个id_rea.pub不在这个目录下,需要自己找一下

5.可以使用这段代码来查看一下

cat /User/username/.ssh/id_rsa.pub
  • 1

6.此时会看见显示的代码
ssh-rsa AAAAB3NzaC1yc2----------------等等。

ssh-rsa后面的字符串就是你的秘钥

把显示出来的SSH keys直接添加到github账户设置里边的SSH keys

注意 ssh-rsa 也需要加进去,加在顶部

最后再执行git clone命令就可以了

如图所示
这里写图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/喵喵爱编程/article/detail/1008728
推荐阅读
相关标签
  

闽ICP备14008679号