Xcode和Git的安装MacOSX上山狮(Xcode and Git installation o

2019-09-23 23:42发布

我刚安装了山狮和Xcode的,所以在/Applications/Xcode.app/Contents/Developer/usr/bin我发现Git的目录

但是,当我在shell终端使用Git命令返回命令的错误没有找到 。 有什么建议么? 我有我的Mac上许多的Git回购,所以我想重新使用它们,而无需再次检查出来:/

Answer 1:

您需要安装的命令行工具(见的Xcode - >首选项- >下载),也可以从下载苹果开发人员下载站点 。



Answer 2:

首先,安装的Xcode命令行工具可能不是你想要的。 看到这个帖子的详细资料:

http://www.cocoanetics.com/2012/07/you-dont-need-the-xcode-command-line-tools/

你想设置一个指向内部Xcode.app存在的git的版本(和svn等)的符号链接或别名。 这将导致你自动获得新版本的Xcode时通过App Store更新。 安装命令行工具只会混淆的问题,因为你将结束的混帐躺在附近多个版本,你将不得不手动更新的命令行工具。

你需要的命令是:

sudo xcode-select --switch /Applications/Xcode.app # tells 'xcrun' where to look

然后在你的shell配置文件,例如.bash_profile

alias git='xcrun git' # use 'xcrun' to locate the git binary

现在运行从终端“git的”将使用内部Xcode.app最新版本。



文章来源: Xcode and Git installation on MacOSX Mountain Lion