最近在安装git的过程中,因为电脑版本的原因无法安装Xcode,导致了git无法正常使用。使用git --version的时候总是报错:
xcode-select: note: no developer tools were found at '/Applications/Xcode.app',
requesting install. Choose an option in the dialog to download the command line
developer tools.
只能通过另外一种方法使用解决此问题:
1.查看mac上Git默认(应该/理论)安装位置
which -a git
结果
/usr/bin/git
2.查看mac上Git实际安装位置
which git
结果
/usr/local/bin/git
发生问题的原因就是这个了,系统默认git的目录和git默认安装目录不一致导致的。找到原因了,就好解决这个问题了,这要想办法让目录一致就好了。
我使用的方法是建立软连接的方法:
1、进入 /usr/bin 目录,使用 find git 命令,看看有没有,如果有,就使用 sudo rm -rf git 命令把它删除掉;
2、还是在 /usr/bin 目录下,使用sudo ln -s /usr/local/git/bin/git git 命令建立git的软连接;
3、使用 git --version 命令,这个时候git命令就好使啦。
参考博客:https://blog.csdn.net/u011968063/article/details/70149191