适用于 Mac OS X 10.4 的 Git
我应该在哪里下载适用于 Mac OS X 10.4 (Tiger) 的免费 Git 客户端?
Where should I download a free Git client for Mac OS X 10.4 (Tiger)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
因为它看起来像预编译版本 Mac OS X 上是为 Leopard 或更高版本编译的,您可能需要自己编译它,尽管您可以下载它们并查看它们是否有效。您可以下载源码并自行编译,或者您可以安装 MacPorts,然后运行
sudo port install git-core
。Since it looks like the pre-compiled version on Mac OS X are compiled for Leopard or later, you will probably have to compile it yourself, though you could download those and see if they work. You could download the source and compile it yourself, or you could install MacPorts and then run
sudo port install git-core
.可能最简单的方法是安装 Homebrew - http://github.com/mxcl/homebrew
然后:
全部详细信息如下:
http://help.github.com/mac-git-installation/
Probably the easiest way is to install Homebrew - http://github.com/mxcl/homebrew
Then:
All detailed here:
http://help.github.com/mac-git-installation/
对于客户端,我假设您指的是 git 的 GUI 前端,在这种情况下我推荐 gitx 。这对于可视化来说非常好。
如果您指的是命令行工具 git,我建议从源代码下载(除非您非常需要包管理器)。这需要您下载 XCode,它会安装一堆从头开始构建所需的命令行工具。只需在主页上下载 git 的源代码,
cd
到目录中,然后:就完成了!
By client, I assume you mean the GUI frontend for git, in which case I recommend gitx. It's quite nice for visualizations.
If you mean the command line tool, git, I recommend downloading from source (unless you have a profound need for a package manager). That requires you to download XCode, which installs a bunch command line tools needed to build from scratch. Just download git's source on the home page,
cd
in to the directory and:and you're done!