flutter pub get 报错:The unauthenticated git protocol on port 9418 is no longer supported.

由于 github 安全机制升级,导致安装依赖报以上错误。

方案 1 替换 git://

在 pubspec.yaml 中将包含git://的仓库地址改为https://或者github://

方案 2 使用https:替换git:

git config --global url."https://".insteadOf git://

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