前几天重装系统之后,vscode 中运行 flutter 项目 flutter pub get 失败。所有的 flutter 命令都是报这个错。cmd 命令行运行直接闪退。
$> flutter pub get
Error: Unable to find git in your PATH.
解决:
git config --global --add safe.directory '*'
出现这个问题可能是重装了git导致的。
参考:https://stackoverflow.com/questions/51263438/how-to-solve-unable-to-find-git-in-your-path-on-flutter/63068926