Xcode学习02:git命令行工具找不到
问题描述
当你 cd
项目根目录,在终端输入 git
命令时,如果出现如下提示:
1 | Failed to extract git version fromgit --version("xcrun: error: active developer path (\"/Users/mac/Desktop/Xcode.app/Contents/Developer\") does not exist\nUsesudo xcode-select --switch path/to/Xcode.appto specify the Xcode that you wish to use for command line developer tools, or usexcode-select --installto install the standalone command line developer tools. |
上面的描述,表示Xcode找不到git,为什么找不到?
- 1、可能没有安装git
- 2、可能关联路径不对
解决方案
- 查看是否安装了git,没有安装则安装
- 查看是否安装了git
1 | mac@bogon Blog % git --version |
终端显示的结果是已经安装
- 没有安装则安装
1 | mac@bogon Blog % xcode-select --install |
- 关联路径不对
终端执行命令:
1 | mac@bogon Desktop % mac@bogon Blog % sudo xcode-select --switch /Users/mac/Desktop/Xcode.app |
如果你不知道Xcode的安装目录,或者不想用命令,可以查找 Xcode -> Preferences -> Locations 并选择 Command Line Tools,查看是否选择了当前Xcode版本
- Post title:Xcode学习02:git命令行工具找不到
- Post author:张建
- Create time:2023-04-30 14:29:21
- Post link:https://redefine.ohevan.com/2023/04/30/Xcode/Xcode学习02:git命令行工具找不到/
- Copyright Notice:All articles in this blog are licensed under BY-NC-SA unless stating additionally.