==> Installing dpkg dependency: gnu-tar fatal: not in a git directory Error: Command failed with exit 128: git
时间: 2023-09-24 08:11:29 浏览: 83
Learn Version Control with Git: A step-by-step course for the complete
这个错误可能意味着你的系统中没有安装 Git 或者 Git 的配置出现了问题。你可以尝试通过以下命令来安装 Git:
```
brew install git
```
如果 Git 已经安装,可以尝试重新安装:
```
brew reinstall git
```
如果你仍然遇到相同的错误,请检查 Git 的配置是否正确,确保它能够正常运行。你可以尝试通过运行以下命令来测试 Git 是否正常工作:
```
git --version
```
如果 Git 配置正确,该命令应该输出 Git 的版本号。如果仍然无法解决问题,请尝试卸载 Homebrew 并重新安装。
阅读全文