Git on Mac OS X 10.5 Leopard
Git in macports has a lot of (for me) useless dependencies because of the Tcl support. Let's skip Tcl support and install it to the directory /opt/git.
$ curl http://kernel.org/pub/software/scm/git/git-1.6.4.2.tar.bz2 | tar xj $ cd git-1.6.4.2 $ NO_TCLTK=yes ./configure --prefix=/opt/git $ make $ sudo make install $ export PATH=/opt/git/bin:$PATH $ git --version git version 1.6.4.2
UPDATE 08-30-09: use version 1.6.4.2
UPDATE 10-14-08: use version 1.6.0.2
Setup Git
# personal git config -–global user.name “Firstname Lastname” git config -–global user.email my@email-address.com # aliases git config –-global alias.st status git config –-global alias.ci commit git config –-global alias.co checkout git config –-global alias.br branch # color git config --global color.diff auto git config --global color.status auto git config --global color.branch auto
tvh-aktuell.de Repository auf gitorious.org
Auf gitorious.org können Git-Repositories kostenlos gehostet werden.
Der (0815-)Code zur Seite tvh-aktuell.de ist nun dort verfügbar.