git clone https://user@bitbucket.org/project/repo.git
will simply return the error
error: RPC failed; result=52, HTTP code = 0 fatal: The remote end hung up unexpectedly
I have tried increasing my Http buffer size and other stuff mentioned online but in vain.
Can someone help me how I should be able to clone?
Hello,
Based on the error mentioned, it seems your repository is quite big and HTTPS prolocol cannot handle it correclty. That said, you could:
evaluate the issue by running the following from Command Prompt / Terminal:
# Linux export GIT_TRACE_PACKET=1 export GIT_TRACE=1 export GIT_CURL_VERBOSE=1 # Windows set GIT_TRACE_PACKET=1 set GIT_TRACE=1 set GIT_CURL_VERBOSE=1 git clone https://user@bitbucket.org/project/repo.git
attempt on increasing the buffer size
git config http.postBuffer <SIZE>
Please, refer to the following documentartion for further information:
- https://confluence.atlassian.com/bitbucketserverkb/git-push-fails-fatal-the-remote-end-hung-up-unexpectedly-779171796.html
- https://confluence.atlassian.com/bitbucketserverkb/error-rpc-failed-result-22-push-to-bitbucket-server-fails-779171801.html
—
Kind regards,
Rafael P. Sperafico
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.