skip to Main Content

my windows (11 home) get error when (clone,push,pull and etc.)

fatal: unable to access ‘https://github.com/alaabibest/fgsdfgsdgfsdfg.git/’: OpenSSL SSL_connect: Connection was reset in connection to github.com:443

can anyone help me?

2

Answers


  1. on the global setting change cryptographic network provider to ‘Secure Channel’
    git config –global http.sslBackend schannel

    Login or Signup to reply.
  2. I experienced the same problem.
    Using SSH Key worked for me

    This is my approach

    1. Generate new SSH key and Add it to ssh-agent

    2. Add the new SSH key to your GitHub account

    3. Clone repository using SSH [click SSH tab!]

      (I recommend you test it on a new folder)

    If you notice, the URL parameter value in [remote "origin"] is changed!*

    More to know:
    Connecting to GitHub with SSH
    Working with SSH key passphrases

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search