Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bitbucket stuck after git push

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...

like image 263
João Victor Avatar asked Mar 18 '26 11:03

João Victor


1 Answers

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)

like image 184
Sérgio Bueno Avatar answered Mar 20 '26 12:03

Sérgio Bueno