pychram에서 github에 pull 시 에러 발생

현상

해결

  • 모든 https repository 연결시 ssl 검증 끔

    git config --global http.sslVerify false
    ## 또는 다음과 같이 환경 변수로 설정 가능
    export GIT_SSL_NO_VERIFY=0
  • https repository 연결시 ssl 검증 끔

    git config http.sslVerify false
  • 확인해 보니 .gitconfig 에 아래 내용이 추가됨

    [http]
    sslVerify = false