在尝试将更改推送到Github上托管的repo时,我遇到了这个非常奇怪的错误。我认为这是一个Github问题,所以我将回购移动到Bitbucket,但我仍然得到同样的错误。如何解决这个问题,将会受到一些指导。
注意:pull
和push
工作得很好。 > git push
Counting objects: 3, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 352 bytes | 352.00 KiB/s, done.
Total 3 (delta 2), reused 0 (delta 0)
error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54
fatal: The remote end hung up unexpectedly
fatal: The remote end hung up unexpectedly
Everything up-to-date
会导致问题。
var planesHidden = false
@IBAction func togglePlanes(_ sender: Any) {
planesHidden = !planesHidden
for (anchor, plane) in self.dictPlanes{
plane.isHidden = planesHidden
}
}
答案 0 :(得分:0)
对于我的案例errno 54,我用
删除了我的git代理
git config --global --unset https.proxy
有效。