2012-11-19 61 views
8

即時通訊使用Bonobo Git服務器,一切都很好。 Im將我所有的舊SVN回購協議遷移到GIT,即使使用+760提供大回購(大約3.5 GB),提交「git svn clone」和「git push」工作得非常好。RPC失敗的結果22 http代碼404

但沒有一個很小的存儲庫:它只有3Mb(未壓縮),只有一個提交。 消息,我總是得到的是:

efrror: RPC Failed; result=22, HTTP code = 404 
fatal: The remote end hung up unexpectedly 

我已經改變倭黑猩猩webconfig爲recomened here,我已經做了this config command

那麼,任何人有任何其他線索?

+2

你有沒有發現這種情況下的問題? – Kennifer

+0

不是100%肯定,這是解決方案,但它解決了我的問題,推動〜40MB到在數據中心WS2008R2機器上運行的Bonobo:https://support.microsoft.com/en-us/kb/2634328 –

回答

0

我剛剛修改我的文件並再次提交代碼,一切工作正常。

4

根據http://gisgeek.blogspot.com/2012/03/bonobo-git-server-remote-end-hung-up.html

這是溶液

解決方案: 修改web.config文件中Bonobo.Git.Server的根(C:\ initpub \ wwwroot的\ Bonobo.Git.Server \ Web.config中)和高達在下列行的限制:

<system.web> 
    <httpRuntime maxRequestLength="102400" /> 


<security> 
    <requestFiltering> 
    <requestLimits maxAllowedContentLength="102400" /> 

在這兩種情況下,「102400」被替換爲「999999999」,並推動工作!

+0

還有錯誤像'錯誤:RPC失敗; curl 56 SSL讀取:錯誤:00000000:lib(0):func(0):reason(0),errno 10054' – it3xl

相關問題