GitHub push时提示“fatal: The remote end hung up unexpectedly”

红太狼 2021-12-21 00:33 325阅读 0赞

这几天在学习git的使用,顺便去网上找个了git代码仓库练练手。http://github.com

注册用户,建立项目什么的都很顺利。

然后网站提示如下:

2011102320060926.png

首先,配置自己的git。

然后建立项目,添加文件,上传修改……

然后,喀……扯到蛋了。

上传时git提示:

  1. Agent admitted failure to sign using the key. Permission denied (publickey)
  2. fatal: The remote end hung up unexpectedly

查看github的官方文档

  1. #1. Check for SSH keys.
  2. $ cd ~/.ssh
  3. #2. Backup and remove existing SSH keys.
  4. $ lsLists all the subdirectories in the current directory
  5. $ mkdir key_backupmakes a subdirectory called "key_backup" in the current directory
  6. $ cp id_rsa* key_backupCopies the contents of the id_rsa directory into key_backup
  7. $ rm id_rsa*
  8. #3. Generate a new SSH key.
  9. $ ssh-keygen -t rsa -C "your_email@youremail.com"
  10. #4. Add your SSH key to GitHub.
  11. #5. Test everything out.
  12. $ ssh -T git@github.com

大概意思就是你现在本地建立自己的SSH密码对,然后将公钥上传到github就行了。

额,好复杂……按照提示折腾了一下,果然可以了。

转载于:https://www.cnblogs.com/Leon5/archive/2011/10/23/2222002.html

发表评论

表情:
评论列表 (有 0 条评论,325人围观)

还没有评论,来说两句吧...

相关阅读