我正在尝试克隆刚刚完全开源的 atom 存储库,但遇到了一些麻烦。
尝试访问git clone存储库会产生 SSL 错误:
wug@wugputer:/src/test$ git clone https://github.com/atom/atom.git
Cloning into atom...
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/atom/atom.git/info/refs
fatal: HTTP request failed
Run Code Online (Sandbox Code Playgroud)
谷歌搜索表明这是一个失败的 CURL 调用,我可以设置一个环境变量来获取更多信息,但它没有显示任何特别有用的信息:
wug@wugputer:/src/test$ GIT_CURL_VERBOSE=1 git clone https://github.com/atom/atom.git
Cloning into atom...
* Couldn't find host github.com in the .netrc file; using defaults
* About to connect() to proxy proxy.wugcorp.com port 3128 (#0)
* Trying 10.1.2.3... * Connected to proxy.wugcorp.com …Run Code Online (Sandbox Code Playgroud)