git - Read from remote host: The connection was aborted -
i can't push commit remote when large or many files.
i can pull:
p:\wamp\www>git pull myuser@myserver.ovh.net's password: up-to-date. but can't push :
p:\wamp\www>git push myuser@myserver.ovh.net's password: counting objects: 170, done. delta compression using 4 threads. compressing objects: 100% (31/31), done. writing objects: 100% (32/32), 767.20 kib | 0 bytes/s, done. total 32 (delta 24), reused 0 (delta 0) read remote host myserver.ovh.net: connection aborted fatal: remote end hung unexpectedly fatal: remote end hung unexpectedly i've searched on google , here the solution of increasing git buffer doesn't work.
for info,
p:\wamp\www>git remote -v origin ssh://myuser@myserver.ovh.net/home/myuser/repo (fetch) origin ssh://myuser@myserver.ovh.net/home/myuser/repo (push) i've rebooted vps, same result.
after filmor comment, i've tried git push origin master everything date.
edit : clarify, want push branch, git push origin mybranch give me same error message.
i found solution, had update current branch in order rid of error, occuring everytime commits large:
git pull origin mybranch after that, works fine.
Comments
Post a Comment