0


解决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

本文转载自: https://blog.csdn.net/weixin_43826536/article/details/130620018
版权归原作者 sqing_L 所有, 如有侵权,请联系我们删除。

“解决fatal:unableto access”的评论:

还没有评论