我尝试使用git。但终端写道:
ROUTER-SETTINGS:~ ILOVEME1199$ git
git: error: can't exec '/Applications/Xcode.app/Contents/Developer/usr/bin/git' (errno=No such file or directory)
答案 0 :(得分:2)
我不确定你的路径中是否有git
(或者根本没有安装)。它可能会混淆OS X,所以这里是the best resource。引用答案:
只需下载[原始git包] [1]。安装程序将在
/usr/local/git
下安装git(您需要停用安全性 运行安装程序的选项。)Xcode使用的
/usr/bin
中有一个预安装的git包装器 没有安装Xcode不起作用。你需要跑/usr/local/git/bin/git
显式或将PATH变量更改为 在/usr/local/git/bin
之前包含/usr/bin
!使用以下内容创建/编辑您的
~/.profile
:PATH=/usr/local/git/bin:$PATH export PATH