Archive for 4 月, 2013

CentOS 6.2/6.3安装配置Git及Gitosis

04.03.2013 by jiezhou - 0 Comment, Posted in linux

1、安装git

因为centos源中已经包含git,而且是较新版本,所有可以直接以下命令安装:

yum install git

2、安装gitosis

yum install python python-setuptools
mkdir -p /data/git
cd /data/git
git clone git://github.com/res0nat0r/gitosis.git
cd gitosis
python setup.py install

Read the rest of this entry »