解决git Could not read from remote repository.Please make sure you have the correct access rights

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

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

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

2.首先在termital终端输入

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

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

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

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

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

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

如图所示
解决git Could not read from remote repository.Please make sure you have the correct access rights_第1张图片

你可能感兴趣的:(版本控制)