Mac升级到10.13后,git命令无法使用

今天将系统升级到 10.13 之后,使用 git --version 命令出现了下面的错误

xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun

原因:

系统升级之后,Xcode 等相关联的插件被卸载了,需要重新安装

解决办法:

终端输入命令

xcode-select --install

这个命令安装的是与 Xcode 的相关联的插件而已,并不是 Xcode 工具本身。( ps:两分钟左右就下好了, Xcode 有7G左右,你家网络有这么快吗?)

测试:

再次执行

git --version

结果是 git version 2.13.5 (Apple Git-94)

Over

你可能感兴趣的:(Mac升级到10.13后,git命令无法使用)