I can't push my commit to the remote when they are too large or with too many files.
I can pull
:
P:\wamp\www>git pull
myuser@myserver.ovh.net's password:
Already up-to-date.
But I can't push
:
P:\wamp\www>git push
myuser@myserver.ovh.net's password:
Counting objects: 170, done.
Delta compression using up to 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 from remote host myserver.ovh.net: The connection was aborted
fatal: The remote end hung up unexpectedly
fatal: The remote end hung up unexpectedly
I've searched on google and here but 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 the VPS, same result.
After filmor comment, I've also tried git push origin master
but everything is up to date
.
EDIT : To clarify, I want to push a branch, but git push origin mybranch
give me the same error message.