博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【ZZ】Error: Agent admitted failure to sign
阅读量:7226 次
发布时间:2019-06-29

本文共 826 字,大约阅读时间需要 2 分钟。

hot3.png

Error: Agent admitted failure to sign
This error appears to only occur on Linux systems. For more details, see this issue report.

$ssh -vT git@github.com...Agent admitted failure to sign using the key.debug1: No more authentication methods to try.Permission denied (publickey).

Resolution

For most users, simply running ssh-add to load your keys into the SSH agent will fix this issue.

$ssh-add# Enter passphrase for /home/you/.ssh/id_rsa: [tippy tap]# Identity added: /home/you/.ssh/id_rsa (/home/you/.ssh/id_rsa)
If your key does not have the default filename, you'll have to pass the path to ssh-add.
$ ssh-add ~/.ssh/my_other_key# Enter passphrase for /home/you/.ssh/my_other_key: [tappity tap tap]# Identity added: /home/you/.ssh/my_other_key (/home/you/.ssh/my_other_key)

转载于:https://my.oschina.net/u/1178546/blog/160192

你可能感兴趣的文章
9.8---硬币问题(CC150)
查看>>
Handsontable 学习笔记-Methods
查看>>
Ubuntu16.04下安装redis并实现helloworld【转载】
查看>>
Python打开新世界的大门-入门篇1
查看>>
Microsoft Azure File 服务简介
查看>>
聚类算法 实例
查看>>
使用BatteryHistorian分析和优化应用电量
查看>>
ORM 关系对象映射
查看>>
数组指针与二维数组
查看>>
12款用于渗透测试的操作系统
查看>>
系统监控glances以及Python&pip 安装
查看>>
http_load使用详解
查看>>
background复合属性详解(上):background-image
查看>>
去除安装程序的窗口显示(类似于后台安装)
查看>>
Excel和CSV格式文件的不同之处
查看>>
poj - 2352 Stars
查看>>
你的apk有多不安全
查看>>
高亮显示,其实就是加入样式
查看>>
第十周web作业2:Object的起源
查看>>
ThunderBird, NewsBlog部分代码阅读笔记
查看>>