Reputation: 639
when I use git push to my repository on bitbucket, git stuck with:
Counting objects: 70, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (60/60), done.
Writing objects: 100% (70/70), 84.86 KiB | 0 bytes/s, done.
Total 70 (delta 5), reused 0 (delta 0)
and stays here forever... I use credentials form login/pass, ssh, reinstall git and nothing. The repository is from the company that I work for, but I can create and clone repos...
Upvotes: 3
Views: 1063
Reputation: 101
I believe this question has already been replied here
Basically, you need to increase your default git configuration 'http.postBuffer' (command -> git config --global http.postBuffer 157286400)
Upvotes: 1