fatal: remote error: The unauthenticated git protocol on port 9418 is no longer support解决方法
GitHub不再支持端口 9418 上未经身份验证的 git 协议错误。
新版使用 https://github.com 非 git://github.com
解决方法在文件中找到url中的 git:// 并将其替换为 github:
即 git://github.com/…… 替换为 github:。
或者使用https:替换git: git config --global url."https://".insteadOf git://