在我的 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 =
任何帮助,将不胜感激!