首页 > 数据库技术 > 详细

git下载代码遇到的‘Please make sure you have the correct access rights and the repository exists’问题

时间:2018-09-26 11:25:11      阅读:229      评论:0      收藏:0      [点我收藏+]

 

接着昨天的搭建博客,今天想直接把vuepress克隆到我的电脑上,结果出现了问题

忘记截图了,反正就记得这么一句话:‘Please make sure you have the correct access rights and the repository exists’

在网上搜索了一下,参考了大神的博客,终于正确改过来了。原博客地址:https://blog.csdn.net/jingtingfengguo/article/details/51892864

我来做一下记录,省了以后忘记。

 

出现这个问题是因为ssh key出现问题,连不上服务器

1、重新在git设置一下身份的名字和邮箱

git config --global user.name "yourname"

git config --global user.email ‘your@email.com‘

 

2.删除.ssh文件夹下的know_hosts

注:在C盘用户文件夹下.ssh,点击进入,手动删除know_hosts

3、git输入命令

$ ssh-keygen -t rsa -C ‘your@email.com‘ 

注:填写自己设置的邮箱地址

填完以后会出现:一直摁回车就好了

技术分享图片

出现到这块的时候系统自动在.ssh文件夹下生成两个文件:id_rsa 和 id_rsa.pub,用记事本打开id_rsa.pub,将其全部复制

打开https://github.com/,登录自己的账户,进入设置

技术分享图片

点击New SSH key

技术分享图片

 

 将id_rsa.pub的内容粘贴到key中

 技术分享图片

 

 5、在git中输入命令

  ssh -T git@github.com

技术分享图片

到这步就算是成功了

然后就可以使用git下载啦

技术分享图片

噜啦啦……

 

git下载代码遇到的‘Please make sure you have the correct access rights and the repository exists’问题

原文:https://www.cnblogs.com/wsblogs/p/9705764.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!