我是靠谱客的博主 疯狂蜗牛,最近开发中收集的这篇文章主要介绍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输入命令git config –global user.name “yourname”回车
git config –global user.email“your@email.com”回车
$ ssh-keygen -t rsa -C “your@email.com”(请填你设置的邮箱地址)回车
接着出现:
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]—–+
这样的 - 之后打开提示的目录下记事本打开id_rsa.pub,复制里面内容。
- 进入自己的账号https://github.com/settings/keys 点击 New sshKey
- 复制的内容粘贴到Key里,Title可以不写,亲测。
- 验证:$ ssh -T git@github.com回车 看到
Hi MalikCheng! You’ve successfully authenticated, but GitHub does not provide shell access.
表示成功了!!
最后
以上就是疯狂蜗牛为你收集整理的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 de所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复