seteuid0's blog
Themed by Diary.
[zz]redhat/centos 6.3 搭建git/gitosis/gitweb详细过程

1. gitweb安装

    注意:redhat的iso源是没有gitweb安装包,但是centos的源中有,在上一篇文章中给出了如何让redhat使用centos的源,那么,只需采用如下命令即可安装。

  1. # yum install gitweb

2. gitweb配置

  gitweb默认安装到了/var/www/git下,其配置文件在/etc/gitweb.conf下,另外,httpd的配置文件/etc/httpd/conf.d/git.conf。

(1)修改/etc/gitweb.conf

  1. $projectroot = “/var/www/git” //将projectroot修改为/var/www/git

(2)修改/etc/httpd/conf.d/git.conf

  1. Alias /git /var/www/git
  2. <Directory /var/www/git>
  3. Allow from all
  4. AllowOverride all
  5. Order allow,deny
  6. Options +ExecCGI
  7. AddHandler cgi-script .cgi
  8. DirectoryIndex gitweb.cgi
  9. SetEnv GITWEB_CONFIG /etc/gitweb.conf
  10. Dav On
  11. RewriteEngine Off

(3)重启httpd

  1. /etc/init.d/httpd restart

(4)将gitosis仓库连接到/var/www/git下,完成web显示

  1. ln -s /home/git/repositories/test_repo.git /var/www/git/

(5)通过浏览器浏览

http://xxxx/git/

注意:  如果git clone  http://xxx/git/test_repo.git时出现git update-server-info错误,则在test_repos.git目录下执行 git update-server-info 命令即可(gitosis服务器的相应仓库下)。

3. 创建新的git repository

在git server的/home/git/repository目录下,执行如下命令:

  1. mkdir test.git
  2. cd test.git
  3. git init –bare
  4. //可以在这里添加源文件,也可以在client端clone之后添加