The unauthenticated git protocol on port 9418 is no longer supported.

image.png

通过官方指导链接可以看到,github最新修改了安全协议,不再支持git,需要用https进行请求。
https://github.blog/2021-09-01-improving-git-protocol-security-github/
所以解决方式就是把[email protected]的请求都改为https://github.com

git config --global url."https://github.com/".insteadof [email protected]:
// 或(根据使用远程包的原先的地址来替换)
git config --global url."https://github.com/".insteadof git://github.com/

你可能感兴趣的:(The unauthenticated git protocol on port 9418 is no longer supported.)