mac xcode卸载后的后遗症-git无法使用

xcode 卸载后 就出现了 如下情况 git命令失效了,如下报错:
xcrun: error: invalid active developer path (/Applications/Xcode.app/Contents/Developer), missing xcrun at: /Applications/Xcode.app/Contents/Developer/usr/bin/xcrun
问题分析:肯定是xcode自带了git 导致删除了无法使用了,所以要修改原git路径或重新安装git
一、重新安装git 具体如下 没反应

MacBook-Pro:~ zhengjie$ brew install git
Error: git: Unsupported special dependency :perl
Error: Git must be installed and in your PATH!
Error: git: Unsupported special dependency :perl

使用更新brew update 也没用了,如下报错:

Error: git: Unsupported special dependency :perl
Error: Git must be installed and in your PATH!

然后折腾安装 brew install perl吧 结果git还是没办法安装
二、后来网上找到一种方法 分享给大家:
主要是重置之前的xcode的设置
注:没有安装的需要执行安装(我的mac 已经安装) xcode-select --install
分三步命令 重置->修改路径指向->打印path路径 具体如下:

sudo xcode-select -r
sudo /usr/bin/xcode-select --switch /Library/Developer/CommandLineTools
xcode-select -p

测试git命令:

MacBook-Pro:~ zhengjie$ git --version
git version 2.20.1 (Apple Git-117)

OK,终于git 可以使用了。

你可能感兴趣的:(mac xcode卸载后的后遗症-git无法使用)