Can no longer click on BitBucket

I'm trying to push my code to BitBucket, but Xcode keeps giving me an error:

SecureTransport error: I/O error (bummers) (-1) 

If I try to press a key using the command line, it will give me the following error:

 error: RPC failed; curl 56 SSLRead() return error -9820 fatal: The remote end hung up unexpectedly 

He worked, but suddenly stopped, and I have no idea why. Googling also received no responses, although resolving a similar error suggested that php was using openssl. This did not work. Any help would be appreciated!

+6
source share
2 answers

After contacting BitBucket, they suggested they connect using SSH rather than HTTPS. My problem was that I translated too much at a time. After that I will work!

+1
source

This problem annoyed me for a while and based on the accepted answer, the following detailed scenario worked with me: add ssh to your Bitbucket account

  • on Bitbucket website click on your avatar
  • BitBack Settings
  • ssk keys
  • Copy your key to the clipboard using cat ~/.ssh/id_rsa.pub | pbcopy cat ~/.ssh/id_rsa.pub | pbcopy , then go past the key and give it any name
  • when dumb xcode shows dumb error dialog indicates ssh is used.

Thanks a lot @Tometoyou!

+1
source

All Articles