http://hron.me/blog/2013/01/gitiles-install-howto/
https://android.googlesource.com/
https://code.google.com/p/gitiles/
本人改写后的Gitiles:https://github.com/airk000/Gitiles_one_click
优点:配置简单,一键式搭建,方便快捷。
使用方法:
1.将项目clone到本地
2.按照gitiles.config.sample书写自己的配置文件gitiles.config
[gitiles]
# Repositories placed here
basePath = /srv/git/repositories //你的git项目所在的根目录
# Do not check they are exported
exportAll = true
# This URL will be displayed as clone URL. DO NOT FORGET TRAILING SLASH!
baseGitUrl = ssh://cr.hron.me:29418/ //显示在git clone处的地址
# Title of site (doh)
siteTitle = Gitiles - kingmax.hron.me:/srv/git/repositories //网页Title
# I dunno why, but it is have to be configured.
canonicalHostName = kingmax.hron.me //好吧,作者不知道为什么,我也不知道……反正就是要设置
./tools/run_dev.sh start
服务就在后台执行了。可以访问本地地址进行测试:127.0.0.7:8080
4.结束
./tools/run_dev.sh stop
服务关闭。
PS:感谢博主
提供的使用帮助。