Source : http://en.gentoo-wiki.com/wiki/Git
* emerge git
Dans le fichier /etc/conf.d/git-deamon
modifier la ligne suivante :
GITDAEMON_OPTS="--syslog --export-all --base-path=/var/git /var/git"
Démarrage : /etc/init.d/git-daemon start
Pour l'ajouter en démarrage automatique : rc-update add git-daemon default
Passez en utilisateur 'nobody' : sudo -u nobody -s
En créez un dépôt :
$ cd /var/git $ mkdir myproject $ git init Initialized empty Git repository in /var/git/myproject/.git/
Essayer maintenant de récupérer le projet :
git clone git://localhost/myproject myproject