git clone fatal: unable to access ‘......./layui.git/‘: openssl ssl_read: ssl_error_syscall

git clone fatal: unable to access ‘https://github.com/sentsin/layui.git/’: openssl ssl_read: ssl_error_syscall, errno 10054

  1. When using git clone to pull layui, it actually reported an error to me. My computer at home has not been used for a long time, and I am inexplicably convulsed. . . . I owe to clean up

  2. First, let's take a look at what the specific error is: git clone fatal: unable to access 'https://github.com/sentsin/layui.git/': openssl ssl_read: ssl_error_syscall, errno 10054 It is not difficult to
    see that ssl is to blame , ah this. . .
    This number is solved, just turn off the ssl certificate verification and it will be over

  3. Execute git config http.sslVerify "false" first

git config http.sslVerify "false"

The result is this error:

fatal: not in a git directory
  1. That's ok, we execute this: git config --global http.sslVerify "false"
git config --global http.sslVerify "false"
  1. No error reported. . . Done.
  2. Finally, here is the complete process:
    insert image description here
    insert image description here

Guess you like

Origin blog.csdn.net/Z_PTOPONE/article/details/118345050