gitblit安装以及使用
1.安装
(1) 安装jdk
(2)下载压缩包
http://www.gitblit.com/ 并解压
(3) 修改data/gitblit.properties文件
添加内容如下:
# Git仓库的路径
git.repositoriesFolder =D:/Java_Env/git/GitRepository
# http协议和https协议的端口
server.httpPort =10101
server.httpsPort =10102
#服务器的地址
server.httpBindInterface =localhost
server.httpsBindInterface =localhost
(4)运行gitblit.cmd
(5)访问 http://localhost:10101即可进入主页 默认用户名:admin 密码:admin
2.使用