version control - The remote end hung up unexpectedly while Git push with large files -
when try push bitbucket repo, following error. (in fact same in github well).
counting objects: 48, done.
delta compression using 2 threads.
compressing objects: 100% (38/38), done.
writing objects: 100% (48/48), 1.95 mib | 38 kib/s, done.
total 48 (delta 9), reused 0 (delta 0)
fatal: remote end hung unexpectedly
error: rpc failed; result=56, http code = 0
fatal: recursion detected in die handler
up-to-date
mostly error like
error: rpc failed; result=56, http code = 0
fatal: remote end hung unexpectedly
either way push fails. large files guess. smaller changes works fine. i've updated http.postbuffer
2m , still doesn't work.
important i've 3g connection , cdma based evdo internet connection. 3g connection, push , else works fine. evdo above errors. i'm under impression because of connection problem evdo or isp.
how can resolve this?
usually, remote end hangups unauthorized users. if can connect that's not issue.
if think it's file size issue, best suggestion:
the default size @ git client starts "chunking" request 1mb. can change setting using:
git config http.postbuffer 524288000
this example sets postbuffer 500mb. play around value , see if helps.
Comments
Post a Comment