当前位置:   article > 正文

git拉取失败,没有权限:Please make sure you have the correct access rights and the repository exist_and the repository exists.

and the repository exists.

window电脑

git拉取项目,出现以下:

fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
提示错误显示为没有权限,主要是因为不同设备上的ssh公钥不同,导致git仓库公钥出现问题,需要重新重新生成ssh公钥即可解决

一.重置用户名和邮箱:

打开Git Bash 进入Git命令,在需要提交的项目根目录下,
输入以下命令来设置名字和邮箱(该处填写的名字和邮箱为github上的用户名和邮箱)
git config --global user.name “你的名字”
git config --global user.email “你的邮箱”

二.删除known_hosts文件:

打开C盘用户下的.ssh文件夹
地址是C:\Users(用户)\Administrator.ssh,删除known_hosts文件

三.生成公钥认证所需的公钥和私钥文件,在C盘.shh文件夹里打开git bash,Git输入命令:

ssh-keygen -t rsa -C “你的邮箱” y之后就一直回车直到完成所有步骤

四.复制公钥:

完成第3步后,此时.ssh文件夹里出现了两个文件,分别为 id_rsa(密钥)和id_rsa.pub(公钥),
用记事本打开id_rsa.pub并全选复制其中的内容,密钥格式是以邮箱结尾的

mac电脑:

打开:cd ~/.ssh
生成密钥:.ssh % ssh-keygen -t rsa -C “邮箱” 三次回车即可
打开复制密钥:cat id_rsa.pub

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

闽ICP备14008679号