idea配置git报错(mac)

问题引出:
前段时间使用idea配置git的时候碰到一个问题,报错如下:

xcrun: error: active developer path 
("/Applications/Xcode.app/Contents/Developer") 
does not exist, use `xcode-select --switch path/to/Xcode.app` 
to specify the Xcode that you wish to use for command line 
developer tools (or see `man xcode-select`)

分析一下原因:
因为我的mac存储空间比较小,而且我不用xcode开发代码,所以就把xcode的程序删除了,包括各种模拟器,乍一看这个报错好像是说找不到mac上的xcode,实际上我们需要的是xcode里面的工具CommandLineTools
解决办法:

  1. 首先安装CommandLineTools
xcode-select --install (如果你的mac上有就不用再安装了哟~
  1. 再指定路径
sudo xcode-select --switch /Library/Developer/CommandLineTools

验证:
在idea的terminal中输入git验证,出现以下内容就说明成功了~
idea配置git报错(mac)_第1张图片

你可能感兴趣的:(工具类错误总结)