为什么git push失败并显示“操作超时”?

tyg4sfes  于 2023-01-11  发布在  Git
关注(0)|答案(2)|浏览(259)
MacMini $ git push origin master
Counting objects: 1916, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (1751/1751), done.
Read from remote host codebasehq.com: Operation timed out
fatal: The remote end hung up unexpectedly
error: pack-objects died of signal 13
error: pack-objects died with strange error
error: failed to push some refs to 'git@codebasehq.com:xx/xx/xx.git'
z31licg0

z31licg01#

如果当前的UTM(Unified Threat Model)防火墙错误地识别出恶意软件、打包数据或流中不安全命令的痕迹,它们可能会干扰传出数据。这些错误警报经常发生。网络或目标端的此类安全设备可以解释为什么一些项目正常运行,而另一些项目正在断开连接。
在这种情况下,如果您为该连接使用不同的协议,例如ssh://https://而不是git://,则可以避免触发。

rwqw0loc

rwqw0loc2#

网络连接似乎不好。您能否访问codebasehq.com,尤其是使用您使用的网络协议时。代理服务器配置是否正确?您能否获取其他项目?

相关问题