连接到 Github 时远程错误
2022-03-22 tech git 1 mins 528 字
发生了什么?
我在安装on my zsh
时报错
fatal: remote error:
The unauthenticated git protocol on port 9418 is no longer supported.
Please see https://github.blog/2021-09-01-improving-git-protocol-security-github/ for more information.
原因?
根据官方博客,github升级了他们的安全机制,不再支持端口 9418 上未经身份验证的 git 协议错误。
解决:
-
一 使用https:替换git:
git config --global url."https://".insteadOf git://
-
二 修改 git://github.com/
将
git://github.com/...
替换成
github:......