Bitbucket一直不稳定,push, pull经常失效。幸好还有goagent可以用。

把git的全局配置改为走goagent代理,可以正常使用:

[http]
proxy = http://127.0.0.1:8087
sslVerify = false

后来自作聪明把https://127.0.0.1:8087也加上,结果出现如下错误:

error: error:140940F6:SSL routines:SSL3_READ_BYTES:unknown alert type while accessing ……

解决方法也很简单,去掉https的配置。

05-06 03:34