git clone 出现 diffie-hellman-group1-sha1
  HvTJUzsxOBtS 2023年11月25日 21 0



文章目录

  • 1、简介
  • 2、解决方法
  • 3、重新 gitclone


1、简介

在配置geit ,使用git clone下拉代码的时候 出现的错误:

Unable to negotiate with ...* port 29419: no matching key exchange method found. Their offer: diffie-hellman-group1-sha1
fatal: Could not read from remote repository.

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

此时已经添加了 public key.

2、解决方法

(1) 切换到 .ssh 文件夹

(2) 新建文件 : gedit config 填写

Host ×××.×××.××.××
KexAlgorithms +diffie-hellman-group1-sha1

文中的 ×××.×××.××.×× 就是 你下载访问的服务 ip 地址

(3) 设置 文本权限 660 : sudo chmod 660 config

3、重新 gitclone

问题解决


【版权声明】本文内容来自摩杜云社区用户原创、第三方投稿、转载,内容版权归原作者所有。本网站的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@moduyun.com

  1. 分享:
最后一次编辑于 2023年11月25日 0

暂无评论

推荐阅读
HvTJUzsxOBtS