views:

48

answers:

3

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

+2  A: 

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.

Brian Campbell
A: 

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/

brendan
Does this work on 10.4?
Dustin
A: 

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!

Tim
Are you sure you need XCode? Installing an IDE to use GCC seems a little obserd. However, I've never used Mac so I don't know if theres a better away.
mathepic
Well, if you look at other solutions, like Homebrew, it requires XCode too. So, I'd just go ahead and install it. For **any** kind of development on a Mac, XCode is a must (not only for the tools).
Tim