| maks blog | |||||
|
Subscribe
Flavours
Blogs |
Mon, 17 Jul 2006
Git server setup
grep git /etc/inetd.conf # git server git stream tcp nowait root /usr/bin/git-daemon git-daemon --inetd --syslog --export-all --base-path=/var/cache/gitAdd the git service: grep git /etc/services git 9418/tcp # gitNow add your users in /var/cache/git/$user and give them write rights. For the fancy web interface you need those settings: cat /etc/gitweb.conf # path to git projects (Latest gitweb has branches for mod_perl usage for now this is enough: egrep git /etc/apache2/sites-enabled/ssl ScriptAlias /git /usr/lib/cgi-bin/gitweb.cgiSmall sample project list: mattems%2Fklibc%2F.git maximilian+attems |
||||