当前位置:   article > 正文

【转】android repo/git server 建立过程(1)

【转】android repo/git server 建立过程(1)

一、安装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

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/636733
推荐阅读
相关标签
  

闽ICP备14008679号