2

尝试设置 Gitblit ( http://gitblit.com/setup_go.html ) 以使我团队中的人员更容易访问我们正在做的事情。

无论如何,我按照这个网站上的说明进行操作:(http://gitblit.com/setup_go.html

现在有一个项目https://localhost:8443/repositories/

对于访问权限,我有两组 project_users 和 admin

访问限制设置为:经过身份验证的克隆和推送授权控制:向所有经过身份验证的用户授予 RW+ 权限我也是分叉用户

当我转到项目页面时,我被告知那里什么都没有并添加一些评论并推送到https://admin@localhost:8443/r/myProject.git

所以我运行:git clone https://admin@localhost:8443/r/myProject.git并得到错误:

Cloning into 'myProject'...
fatal: unable to access 'https://admin@localhost:8443/r/myProject.git/': Received HTTP code 504 from proxy after CONNECT

我还缺少其他配置吗?

4

1 回答 1

2

感谢评论,我发现了更多信息:

解决方案如下:

1. set system_variable NO_PROXY = localhost

2. run git config http.sslVerify=false如果在持有 repo 的机器上开发

于 2014-04-02T14:04:39.607 回答