mac更新系统后Git不能用,提示missing xcrun at

今天更新了mac系统,然后就踩了这个坑。

启动AndroidStudio 右上角提示:

can't start git: /usr/bin/git 
probably the path to git executable is not valid . `fix it`.

点击fix it后 点击最上边路径地址后边的test提示:

errors while executing git -- version. exitCode=1 
errors: xcrun: error : invalid active developer path(/library/developer/commandlinetools),missing xcrun at:
/library/developer/commandlinetools.usr/bin/xcrun

找了一圈。。很多开发者都遇到过这问题。据说苹果每个版本的更新都会有这样的问题,原因是每次安装新的更新后,Xcode都被卸载了。。。。不扯别的说解决方案。


通过终端重新安装的Xcode命令行工具使用(其实这里安装的是Command Line Tools,Command Line
Tools是在Xcode中的一款工具)

xcode-select --install

第二种解决方案(本人没试,感兴趣的小伙伴可以尝试下)

如果不安装Xcode可以重安装git(下载地址)然后在AndroidStudio中切换到路径/usr/local/git/bin/git。

如下图所示。

mac更新系统后Git不能用,提示missing xcrun at_第1张图片


哪里写的有问题,欢迎指点

你可能感兴趣的:(git,mac,android,xcrun,git不能用,错误坑)