0
点赞
收藏
分享

微信扫一扫

Git使用过程中的一些问题

寒羽鹿 2022-02-23 阅读 118
git

很多git的问题起始都是由于网速导致的,可以尝试运行一下命令:


git config --global --unset http.proxy

git config --global --unset https.proxy

git config --global http.sslVerify "false"

其实就是不使用http和https代理,并且不检查ssl

另一种方法是从文章:​​​​​​(18条消息) git下载出错GnuTLS recv error (-54): Error in the pull function_海水梦悠悠的博客-SDN博客z​​​​​​​e​​​​​​​eicon-default.png?t=M1L8https://blog.csdn.net/shengsikandan/article/details/116697896

 中学习来的,其实就是将命令

git clone https://github.com/**.git

变为

git clone git://github.com/**.git

这个方法对于一些问题是非常有效的!

举报

相关推荐

0 条评论