When trying to push to git using: git push
, I all of a sudden get the following error message:
fatal: unable to access 'https://bitbucket.org/mopla-solutions/mopla-server.git/': HTTP/2 stream 5 was not closed cleanly before end of the underlying stream
I tried the following things recommended in various SO answers and other sites:
- changing to another network (mobile hotspot)
- setting git config:
git config --global http.version HTTP/1.1
andgit config --global http.postBuffer 524288000
But so far, nothing helped. Is there any other way I can debug this issue?
UPDATE: Bitbucket has resolved this issue - everything is working normally now.