git 遇到问题:Please make sure you have the correct access rightsand the repository exists 或Permission de

git 遇到问题:Please make sure you have the correct access rightsand the repository exists 或Permission denied (publickey).

遇到这类问看看网上说一点都不详细,所以经过一番研究终于搞定,想给像我这样的童鞋给一篇仔细的解决办法

今天第一下载完 Git-2.11.1-64-bit.exe最新版本,想从Git库中克隆项目。没想到原来要进行密钥生成。就是和你https://github.com上的账号进行验证。在本机生成密钥与自己账号绑定。这样就可以从git上下项目了


解决方法如下:

  • 进入https://github.com/settings/profile查看自己的账号和邮箱,记到记事本下来,下面会用到。git 遇到问题:Please make sure you have the correct access rightsand the repository exists 或Permission de_第1张图片
    git 遇到问题:Please make sure you have the correct access rightsand the repository exists 或Permission de_第2张图片
  • 打开Git输入命令git config –global user.name “yourname”回车
    git config –global user.email“[email protected]”回车
    这里写图片描述
    $ ssh-keygen -t rsa -C “[email protected]”(请填你设置的邮箱地址)回车

接着出现:
Generating public/private rsa key pair.
Enter file in which to save the key (/Users/your_user_directory/.ssh/id_rsa):

无视这些请继续直接按下回车

  • 直到出现
    The key’s randomart image is:
    +—[RSA 2048]—-+
    | ==++. . |
    | . ++.o . .|
    | ..o++Oo |
    +—-[SHA256]—–+git 遇到问题:Please make sure you have the correct access rightsand the repository exists 或Permission de_第3张图片
    这样的
  • 之后打开提示的目录下记事本打开id_rsa.pub,复制里面内容。
  • 进入自己的账号https://github.com/settings/keys 点击 New sshKey
    这里写图片描述

  • 复制的内容粘贴到Key里,Title可以不写,亲测。

git 遇到问题:Please make sure you have the correct access rightsand the repository exists 或Permission de_第4张图片
- 验证:$ ssh -T [email protected]回车 看到
Hi MalikCheng! You’ve successfully authenticated, but GitHub does not provide shell access.
表示成功了!!

你可能感兴趣的:(git)