=====-I T-=====/▣기타등등
[Git] Git Error Message 시 대처사항 목록(계속 추가예정)
윤귀
2016. 9. 1. 21:46
반응형
1.
fatal: unable to access 'https://github.com/azthief/mean-chat.git/': Failed to connect to github.com port 443: Timed out
-> 프록시 설정으로 해결
C:\> git config --global http.proxy http://프록시주소:포트번호
2.
fatal: unable to access 'https://github.com/abcdef/test.git/': SSL certificate problem: unable to get local issuer certificate
-> SSL 인증서 오류건으로, SSL 검증옵션하지 않는 방법으로 해결
C:\> git config --global http.sslVerify false
반응형