数据库
首页 > 数据库> > Go 安装 sqlite3 驱动报错 fatal: The remote end hung up unexpectedly

Go 安装 sqlite3 驱动报错 fatal: The remote end hung up unexpectedly

作者:互联网

问题:在 Windows 平台下使用 go get 安装sqlite3 驱动时报错 The remote end hung up unexpectedly ?

原因及解决方法:

       原因可能有两种:

git config --global http.postBuffer 524288000

     或者直接在配置文件中添加参数,如下所示:

     打开该文件,在文件末尾添加:

[http] 
postBuffer = 524288000
git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999

参考文献:

标签:www,git,remote,global,unexpectedly,报错,hung,http,config
来源: https://www.cnblogs.com/xuejiale/p/10585787.html