RPC失败结果22 http代码404
我使用Bonobo Git Server,一切都很好。 Im将我所有的旧SVN回购协议迁移到GIT,即使使用+760提供大回购(大约3.5 GB),提交“git svn clone”和“git push”工作得非常好。
但不是一个微小的版本库:它只有3Mb(未压缩),只有一次提交。 我总是得到的消息是:
efrror: RPC Failed; result=22, HTTP code = 404
fatal: The remote end hung up unexpectedly
我已经将bonobo webconfig更改为这里推荐的,并且我已经完成了这个配置命令。
那么,任何人都有其他线索?
基于http://gisgeek.blogspot.com/2012/03/bonobo-git-server-remote-end-hung-up.html。
这是解决方案
解决方案:修改Bonobo.Git.Server根目录下的web.config文件(C: initpub wwwroot Bonobo.Git.Server Web.config),并在以下几行添加限制:
<system.web>
<httpRuntime maxRequestLength="102400" />
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="102400" />
在这两种情况下,“102400”都被替换为“999999999”,并且推送工作正常!
我只是修改我的文件并再次提交代码,一切工作正常。
链接地址: http://www.djcxy.com/p/41703.html