문제상황
github에 있는 프로젝트를 pull하려고 했는데, 다음과 같은 에러가 나왔다.
git pull origin main
fatal: unable to access 'https://github.com/rpf5573/javascript-tetris.git':
SSL certificate problem: unable to get local issuer certificate
해결방법 찾기
SSL인증서 사용 안한다고 설정하기
SSL인증서가 없어서 발생한 문제같은데, SSL인증서 없이 그냥 http로 통신한다고 설정하면 해결된다.
git config --global http.sslVerify false