jy166102 发表于 2018-9-18 12:17:35

git clone https 代码异常处理

问题描述:  获取代码异常
  #git clone https://github.com/couchbase/geocouch.git -b couchdb1.2.x
  error: SSL certificate problem, verify that the CA cert is OK. Details:
  error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed while accessing https://github.com/couchbase/geocouch.git/info/refs
  fatal: HTTP request failed
  认证请求失败,解决方法如下:
  #git config --global http.sslverify "false"
  #git clone https://github.com/couchbase/geocouch.git -b couchdb1.2.x

页: [1]
查看完整版本: git clone https 代码异常处理