Solution 1: replace HTTPS with Git
Error message for the first clone:
Administrator@WIN-QIJ6CH8JVRR MINGW64 /f/BookProject $ git clone https://github.com/fenixsoft/microservice_arch_springcloud.git Cloning into 'microservice_arch_springcloud'... fatal: unable to access 'https://github.com/fenixsoft/microservice_arch_springcloud.git/': OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 10054
Change HTTPS to Git
Administrator@WIN-QIJ6CH8JVRR MINGW64 /f/BookProject $ git clone git://github.com/fenixsoft/microservice_arch_springcloud.git Cloning into 'microservice_arch_springcloud'... remote: Enumerating objects: 808, done. remote: Counting objects: 100% (808/808), done. remote: Compressing objects: 100% (411/411), done. Receiremote: Total 808 (delta 277), reused 723 (delta 197), pack-reused 0 Receiving objects: 100% (808/808), 6.28 MiB | 3.48 MiB/s, done. Resolving deltas: 100% (277/277), done.
Solution 2: two commands
Article 1: this will report an error. Continue with the next order
git config http.sslVerify "false"
Article 2:
git config --global http.sslVerify "false"