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.
'Env Setting > Git' 카테고리의 다른 글
How to find the hash of branch in Git? (1) | 2024.03.18 |
---|---|
Merge branch 'master' into others (0) | 2024.03.18 |
[RESET] git reset 조지기 (32) | 2023.12.12 |
GIT BASH에서 FATAL: PROTOCOL 'HTTPS' IS NOT SUPPORTED 에러가 날 때 (62) | 2023.03.23 |
error:failed to push some refs to (94) | 2022.09.27 |