I'm on ubuntu desktop 22 and I have installed git version 2.37.1, I'm trying to clone a repository using ssh after some minutes apper this error:
"Connection to bitbucket.org closed by remote host"
Any idea?
I'm on ubuntu desktop 22 and I have installed git version 2.37.1, I'm trying to clone a repository using ssh after some minutes apper this error:
"Connection to bitbucket.org closed by remote host"
Any idea?
I found 2 problems.
So, I found a git command for clone just a part of history commits. This helped to clone my proyect althogh my internet bad bandwidth.
git clone --depth=1 -b your_branch_name git@bitbucket.org:benjamin_castillo/my_own_proyect.git
You should trace network connection by this command:
GIT_TRACE=1 GIT_CURL_VERBOSE=1 GIT_SSH_COMMAND="ssh -vvv" git push --progress -v origin
You can view this helpful links: