zoukankan      html  css  js  c++  java
  • git下载代码遇到的‘Please make sure you have the correct access rights and the repository exists’问题

    接着昨天的搭建博客,今天想直接把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下载啦

    噜啦啦……

  • 相关阅读:
    Poj 2391 二分答案+最大流+拆点
    POJ 1087 A Plug for UNIX 最大流
    POJ 1459 Power Network 最大流
    POJ 2112 Optimal Milking 二分答案+最大流
    POJ 1273 Drainage Ditches 最大流
    POJ 1149 PIGS 最大流
    POJ 2288 Islands and Bridges 哈密尔顿路 状态压缩DP
    The Cow Lexicon
    1523. K-inversions
    1350. Canteen
  • 原文地址:https://www.cnblogs.com/wsblogs/p/9705764.html
Copyright © 2011-2022 走看看