哪个版本的git是Xcode 5运行的?

时间:2014-03-18 22:15:08

标签: objective-c xcode git

出于好奇。我知道在以前版本的Xcode(如Xcode 4)中,它使用的是自己的(过时的)git版本。仍然是这种情况还是使用当前用户路径中的那个?

感谢。

2 个答案:

答案 0 :(得分:2)

你应该可以在Xcode 5的git上调用“git --version”。

对我来说,从终端打电话给它做了:

$ /Applications/Xcode.app/Contents/Developer/usr/bin/git --version

如果Xcode安装在其他地方,您可能需要更改路径。

答案 1 :(得分:1)

您可以从bash或类似bash的shell中运行以下命令:

$(xcode-select -print-path)/usr/bin/git --version

从csh或tcsh,这将做同样的事情:

`xcode-select -print-path`/usr/bin/git --version

这将显示当前所选Xcode版本的git版本号。