Where should I download a free Git client for Mac OS X 10.4 (Tiger)?
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
.
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:
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!