Env Setting/Git
When to Git Clone SSL certificate issue
remoted
2024. 3. 15. 18:40
728x90
Project could request certificate or validation, for Our project need to be protect from unauthroized user.
So some of case need for SSL verification.
Especailly, protected or private project could do definitely.
Information Gathering
35mwl@remoted MINGW64 ~
$ git clone https://remoted@.......
Cloning into 'OtpServer'...
fatal: unable to access 'https://....': SSL certificate problem: unable to get local issuer certificate
Setting up
$ git config --global http.sslVerify false
Do not confuse other options like
$ git config --global http.security false
Then, Cloning start
$ git clone ........
\Cloning into 'OtpServer'...
warning: ----------------- SECURITY WARNING ----------------
warning: | TLS certificate verification has been disabled! |
warning: ---------------------------------------------------
warning: HTTPS connections may not be secure. See https://aka.ms/gcm/tlsverify for more information.
remote: Counting objects: 5889, done
remote: Finding sources: 100% (5889/5889)
remote: Getting sizes: 100% (3431/3431)
remote: Compressing objects: 100% (794/794)
remote: Total 5889 (delta 2082), reused 5883 (delta 2079)
Receiving objects: 100% (5889/5889), 243.03 MiB | 6.96 MiB/s, done.
Resolving deltas: 100% (2082/2082), done.