Github克隆项目的时候报错:[email protected]: Permission denied (publickey).解决方法

问题

Github克隆项目的时候报如下错:

[email protected]: Permission denied (publickey).

fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

从上面报出的错误提示可以知道在克隆项目时没有权限所以被拒绝了,Github 服务器和我们本地的通讯要使用 SSH key(密钥)来验证,去我们Github主页检查是否缺少密钥,缺少了密钥只需设置一个密钥就行了。

解决方法

从Github主页右上角点击头像选择Settings,点击进入SSH and GPG keys

                                       

点击创建一个新的密钥"New SSH key"

SSH Key获取方法

打开 Git Base,输入命令:ssh-keygen -t rsa -C ‘[email protected]’,然后一直回车,注意:有y/n是输入y,下图中这个y/n就是已经有文件项目询问是否覆盖的意思。

接下来输入命令:cat ~/.ssh/id_rsa.pub

这个时候显示出密钥,然后直接复制密钥粘贴到GitHub设置密钥SSH的key上面然后保存即可。

原文地址:https://www.cnblogs.com/Chan94/p/11780273.html

时间: 2024-09-30 16:29:10

Github克隆项目的时候报错:[email protected]: Permission denied (publickey).解决方法的相关文章

[email protected]: Permission denied (publickey).报错解决

windows 系统电脑,再一次更新git客户端后提交报错 [email protected]: Permission denied (publickey).fatal: Could not read from remote repository. Please make sure you have the correct access rightsand the repository exists. 解决方案 先运行 eval `ssh-agent -s` 再输入 ssh-add ~/.ssh

$ ssh -T -v [email protected]_在本地用ssh连接github出错[email protected]: Permission denied (publickey).

$ ssh -T -v [email protected]报错: debug1: Authentications that can continue: publickey debug1: Next authentication method: publickey debug1: Trying private key: /Users/eveline/.ssh/id_rsa debug1: Trying private key: /Users/eveline/.ssh/id_dsa debug1:

[email protected]: Permission denied (publickey).////remote: Permission to xxx/test.git denied to xxx.等权限问题

Error msg [email protected]: Permission denied (publickey) 或者: remote: Permission to xxx/test.git denied to xxx. 等由于权限切换问题 错误原因: 账号切换, 原账号保存数据未清除 解决: 1. 清除凭证: 控制面板-->用户账户-->凭证管理器-->管理凭证: 删除git相关的凭证 2. 删除本地git配置数据: cd ~ && rm -rf .git* 即可重

windows下github 出现Permission denied (publickey).解决方法

今天在学习github的时候遇到了一些问题,然后爬了一会,找到了解决方法记录下来,以防忘记,当然能帮助别人最好啦! github教科书传送门:http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000 再学习到"添加远程仓库"的时候遇到了 Permission denied (publickey) 这个问题, 总结来说以前的步骤如下所示: 1.git config --global

zabbix启动报错:Connection to database 'xxx' failed解决方法

Zabbix 分布式系统监视系统 zabbix是一个基于WEB界面的提供分布式系统监视以及网络监视功能的企业级的开源解决方案. zabbix能监视各种网络参数,保证服务器系统的安全运营:并提供灵活的通知机制以让系统管理员快速定位/解决存在的各种问题. 本文讲解的是zabbix无法启动报错:Connection to database 'xxx' failed: [1045] Access denied for user 'xxx'@'localhost' (using password: NO)

rlwrap安装报错You need the GNU readline 解决方法

首先大家肯定知道rlwrap是干什么的? 在linux以及unix中,sqlplus的上下左右.回退无法使用,会出现乱码情况.而rlwrap这个软件就是用来解决这个的. 这个错误曾经困扰我很久很久!下载readline 安装,安装好readline 还是无法运行rlwrap的安装程序 在网上搜寻很久才找到一个靠谱的解决方法 原来rlwrap这个程序的安装,需要依赖两个包, 一个是readline,这个readline在RHEL中已经集成了.不需要去专门下载 另外一个包 libtermcap-de

运行Scrapy工程,报错ModuleNotFoundError: No module named 'win32api'解决方法

1.运行爬虫scrapy crawl name,报错ScrpyModuleNotFoundError: No module named 'win32api' 2.解决方法: 在https://github.com/mhammond/pywin32/releases找到合适的软件,进行下载安装. 3.完成安装: 4.安装成功后,再次运行scrapy crawl name.运行成功 运行Scrapy工程,报错ModuleNotFoundError: No module named 'win32api

IDEA找不到程序包 和 request.getServletContext()报错Cannot resolve method 'getServletContext()的解决方法

重新装了idea和down了项目却一直报错,在调用request.getServletContext()的方法时一直报Cannot resolve method 'getServletContext()的错误,网上查了好多方法,大多数都是在说是servlet3.0才可以支持此方法,而servlet3.0只有tomcat7以上版本才可以,我检查了我自己的tomcat发现就是3.0,最终找到原因 对于Maven项目要检查pom文件中的servlet引入的是哪个包,我原来写的是这个 <dependen

python安装locustio报错error: invalid command &#39;bdist_wheel&#39;的解决方法

locust--scalable user load testing tool writen in Python(是用python写的.规模化.可扩展的测试性能的工具) 安装locustio需要的环境条件是:Python2.6+,但是不支持Python3. 今天在cmd里运行pip install locustio,报错提示:error: invalid command 'bdist_wheel'. 原因:pip和setuptools的版本较低. 解决方案:升级pip和setuptools. 一