7

在我的 Mac OS X 10.8 上设置 gitlbit,但一直无法推送!

在 Gitblit Web 界面中,我创建了一个名为 empty 的空存储库,并通过以下命令将其克隆到本地存储:

git clone https://localhost:8443/git/test/empty.git

我添加了一个文件并提交了更改并添加了一个远程

git remote add gitblit https://localhost:8443/git/test/empty.git

然后我尝试推动:

git push -v gitblit master

错误显示:

Pushing to https://localhost:8443/git/test/empty.git
Counting objects: 3, done.
Writing objects: 100% (3/3), 215 bytes, done.
Total 3 (delta 0), reused 0 (delta 0)
POST git-receive-pack (351 bytes)
error: RPC failed; result=52, HTTP code = 0
fatal: The remote end hung up unexpectedly
fatal: The remote end hung up unexpectedly
Everything up-to-date

我尝试了 ssl 和缓冲区设置,但没有帮助。

git config http.postBuffer 524288000
git config http.sslVerify false 
git config --global http.postBuffer 524288000
config --global --bool --add http.sslVerify false

我的 Gitblit 绑定设置全部设置为空白以接受对所有接口的绑定:

server.httpBindInterface = 
server.httpsBindInterface = 
server.ajpBindInterface = 

任何帮助,将不胜感激!

4

2 回答 2

1

我刚刚解决了将 git 版本更新为最新版本(2.1.2)的问题

于 2014-11-19T06:21:30.927 回答
0

这已经很晚了,但我自己也遇到了这个问题,未来的用户可能会觉得这很有帮助。

我的工作组正在设置我们自己的 git 服务器,但忘记为组的远程存储库添加写权限。

使用 chmod 添加组写入权限就可以了。

于 2013-07-19T18:24:53.677 回答