解决fatal:unableto access

使用git clone,遇到的问题:

fatal: unable to access 'https://github.com/ultralytics/ultralytics/': gnutls_handshake() failed: The TLS connection was non-properly terminated.


原因分析:

git拉取时,会有http或https代理,取消代理即可。


解决方案:

//取消http代理
git config --global --unset http.proxy
//取消https代理 
git config --global --unset https.proxy

或使用科学上网。

你可能感兴趣的:(git,github)