适用于 Mac OS X 10.4 的 Git

发布于 2024-09-25 08:24:20 字数 55 浏览 2 评论 0原文

我应该在哪里下载适用于 Mac OS X 10.4 (Tiger) 的免费 G​​it 客户端?

Where should I download a free Git client for Mac OS X 10.4 (Tiger)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

幻梦 2024-10-02 08:24:20

因为它看起来像预编译版本 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.

喜你已久 2024-10-02 08:24:20

可能最简单的方法是安装 Homebrew - http://github.com/mxcl/homebrew

然后:

$ brew install git
==> Downloading http://kernel.org/pub/software/scm/git/git-1.6.5.7.tar.bz2
######################################################################## 100.0%
==> ./configure --prefix=/usr/local/Cellar/git/1.6.5.7
==> make install
==> Downloading http://kernel.org/pub/software/scm/git/git-manpages-1.6.5.7.tar.bz2
######################################################################## 100.0%
/usr/local/Cellar/git/1.6.5.7: 383 files, 16M, built in 74 seconds

全部详细信息如下:

http://help.github.com/mac-git-installation/

Probably the easiest way is to install Homebrew - http://github.com/mxcl/homebrew

Then:

$ brew install git
==> Downloading http://kernel.org/pub/software/scm/git/git-1.6.5.7.tar.bz2
######################################################################## 100.0%
==> ./configure --prefix=/usr/local/Cellar/git/1.6.5.7
==> make install
==> Downloading http://kernel.org/pub/software/scm/git/git-manpages-1.6.5.7.tar.bz2
######################################################################## 100.0%
/usr/local/Cellar/git/1.6.5.7: 383 files, 16M, built in 74 seconds

All detailed here:

http://help.github.com/mac-git-installation/

潜移默化 2024-10-02 08:24:20

对于客户端,我假设您指的是 git 的 GUI 前端,在这种情况下我推荐 gitx 。这对于可视化来说非常好。

如果您指的是命令行工具 git,我建议从源代码下载(除非您非常需要包管理器)。这需要您下载 XCode,它会安装一堆从头开始构建所需的命令行工具。只需在主页上下载 git 的源代码,cd 到目录中,然后:

./configure
make
sudo make install

就完成了!

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:

./configure
make
sudo make install

and you're done!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文