最近要开发个大项目,嫌自己电脑没地方了,把xcode删了,然后就想起git也没了。赶紧把git装回来。我如下脑残的操作就开始了。
如果是个干净的mac,运行 git --version 命令后,系统就会自动下载需要安装的内容了,等待就可以了。
但是我的报错如下:
xcrun: error: active developer path ("/Applications/Xcode.app/Contents/Developer") does not exist
Use `sudo xcode-select --switch path/to/Xcode.app` to specify the Xcode that you wish to use for command line developer tools, or use `xcode-select --install` to install the standalone command line developer tools.
See `man xcode-select` for more details.
参考提示,执行:
xcode-select --install
报错:
xcode-select: error: command line tools are already installed, use "Software Update" to install updates
执行:
Software Update
报错:command not found:Software
然后我选择了,如下操作,删掉重装:
sudo rm -rf /Library/Developer/CommandLineTools
xcode-select --install
结果运行git 还是不行。报错还是和最初的运行git一样。。。。。
最后有查到了一个
sudo xcode-select --reset
在执行git ,诶嘿,好使了~~~
也许第一次就应该执行这个--reset命令。