解决mac更新后无法连接git问题

问题描述

在Mac电脑上使用git克隆命令时出现报错:

bash 复制代码
no matching host key type found. Their offer: ssh-rsa

问题原因

苹果更新了ssh默认不再支持ssh-rsa导致。

问题解决

修改ssh默认config配置文件,再重新生成rsa密钥

bash 复制代码
sudo nano ~/.ssh/config

写入文本:

bash 复制代码
Host *
    HostkeyAlgorithms +ssh-rsa
    PubkeyAcceptedAlgorithms +ssh-rsa

重新生成密钥:

bash 复制代码
ssh-keygen -t rsa
cat ~/.ssh/id_rsa.pub
相关推荐
小江村儿的文杰1 小时前
XCode Build时遇到 .entitlements could not be opened 的问题
ide·macos·ue4·xcode
Kkooe2 小时前
GitLab|数据迁移
运维·服务器·git
Beekeeper&&P...3 小时前
git bash是什么,git是什么,git中的暂存区是什么,git中的本地仓库是什么,git中工作目录指的是什么
开发语言·git·bash
天涯倦客的美丽人生3 小时前
2024年11月最新 Alfred 5 Powerpack (MACOS)下载
macos
SoraLuna3 小时前
「Mac玩转仓颉内测版24」基础篇4 - 浮点类型详解
开发语言·算法·macos·cangjie
总爱写点小BUG4 小时前
VM虚拟机装MAC后无法联网,如何解决?
macos
Stara05118 小时前
Git推送+拉去+uwsgi+Nginx服务器部署项目
git·python·mysql·nginx·gitee·github·uwsgi
lsswear8 小时前
GIT 操作
git
勋勋勋勋小勋勋8 小时前
git分支合并某一次提交
git