当您从Github.app“安装命令行工具”时,您会在Github.app中找到符号链接的Git二进制文件,如下所示:
/usr/local/bin/git -> /Applications/GitHub.app/Contents/Resources/git/bin/git
$ git --version
git version 1.8.3.1
同时OSX / Xcode有自己的风格:
$ /usr/bin/git --version
git version 1.7.12.4 (Apple Git-37)
当然是官方的发行版:
/usr/local/git/bin/git --version
git version 1.8.3.2
这些二进制文件是否有任何明显的差异(超出点版本?)。我只想要一个大型回购的最快版本。
答案 0 :(得分:1)
发行说明:
https://raw.github.com/git/git/master/Documentation/RelNotes/1.8.3.2.txt https://raw.github.com/git/git/master/Documentation/RelNotes/1.8.3.1.txt https://raw.github.com/git/git/master/Documentation/RelNotes/1.7.12.4.txt
特别是:
https://raw.github.com/git/git/master/Documentation/RelNotes/1.8.0.txt
你可能关心的是“1.7.12之后的新”。
但为什么不使用最新的?