今日接到一项目陡然发现很多关于github的错误,多方查找都没有很全面的内容,列举出发现的几种问题。
一、 git://github.com无法连接
解决办法:
控制台执行下列命名
git config --global url."https://".insteadof git://
二、ssh://git@github.com无法连接
解决办法:
控制台执行下列命名
git config --global url."https://github.com/".insteadOf "ssh://[email protected]/"
三、OpenSSL SSL_read: Connection was reset, errno 10054
解决办法:
网络不稳定,连接超时。
第一种办法,控制台执行下列命名,修改本地缓存大小,下列的524288000表示大小,若不够大,根据需要增加
git config --global https.postBuffer 524288000
第二种办法,查看npm配置的registry地址,若是国外的https://registry.npmjs.org/,改为淘宝镜像再试https://registry.npm.taobao.org
npm config set registry https://registry.npm.taobao.org
修改后通过npm config get registry查看是否修改正确
若还是报10054,可以多试几遍,或者关闭开发工具后重启再试。
四、 Filename too long(文件名称过长)
解决办法:
控制台执行下列命名
git config --global core.longpaths true
五、git配置信息
可以通过下列命令查看
git config --global -l
也可以通过命令手动编辑git配置
git config --edit --global
版权归原作者 蚂蚁子。 所有, 如有侵权,请联系我们删除。