赞
踩
一、安装git dameon
$ sudo apt-get install git-daemon-run
二、设置仓库目录
修改/etc/sv/git-daemon/run,配置git tree的目录以及共享目录
$ vi etc/sv/git-daemon/run
#!/bin/sh
exec 2>&1
echo 'git-daemon starting.'
exec chpst -ugitdaemon \
/usr/lib/git-core/git-daemon --export-all --base-path=/pub/gittrees /pub/gittrees
$ vi etc/sv/git-daemon/run
? --export-all:导出(共享)所有目录,否则要在每个要导出的目录下作如下操作:
$ touch git-daemon-export-ok
? --base-path: 映射仓库地址。/pub/gittrees是镜像目录。比如:
git://your_server_ip/ repository/platform/manifest.git,则仓库地址在
/pub/gittrees/ repository/platform/manifest.git
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/tjd0227/archive/2010/06/01/5640418.aspx
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。