IT Knowledge/기타
Git clone Peer's certificate issuer
Seok.
2022. 1. 7. 18:31
반응형
[오류 내용]
git clone시, 아래와 같이 Peer의 인증서 발행자를 신뢰하지 못하는 경우.
[root@vm-centos-ctl app]# git clone https://github.com/ansible/awx.git
Cloning into 'awx'...
fatal: unable to access 'https://github.com/ansible/awx.git/': Peer's certificate issuer has been marked as not trusted by the user.
[해결방안]
git clone시 SSL을 검증하지 않도록 설정하는 방법.
2가지 방법이 있다.
1) Set SSL Verify to false only for specific repo:
git config http.sslVerify false
2) Set SSL Verify to false Globally:
git config --global http.sslVerify false
반응형