3

我正在尝试将提交推送到我的 github 存储库。

在使用 HTTPS 时运行git push -ff会给我:(我正在使用该-ff标志,因为我正在修复一个无效的提交)

C:\Users\mooman\Dropbox\Project\Workspace\MilkBukkit [master]> git push -ff
Counting objects: 28390, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (7515/7515), done.
Writing objects: 100% (28390/28390), 4.28 MiB, done.
Total 28390 (delta 13498), reused 28182 (delta 13449)
efrror: RPC failed; result=55, HTTP code = 0
atal: The remote end hung up unexpectedly
fatal: recursion detected in die handler
Everything up-to-date

我已经跑了git gcgit fsck但问题仍然存在。

使用 HTTP 曾经挂在 10% 左右,但我使用git config --global http.postBuffer 524288000它现在产生结果的位置调整了缓冲区,如上所示。

尝试通过运行 SSH 使用:git remote set-url origin https://github.com/mooman219/CowCode.git结果:

Warning: Permanently added 'github.com,204.232.175.90' (RSA) to the list of known hosts.
Counting objects: 28390, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (7515/7515), done.
Writing objects: 27% (28390/28390)

但它在那里挂起。

我还尝试了端口转发 git 协议port 9418并禁用了我拥有的任何防火墙,但 SSH 和 HTTP 的结果是相同的。

4

2 回答 2

4

GitHub现在似乎已关闭(您可以在https://status.github.com/上查看它们何时回来)。在他们完成与任何袭击他们的星际空间虫子的战斗之后再试一次。

于 2013-07-03T21:13:20.327 回答
3

根据http://status.github.com/ - 他们“遇到技术困难”

于 2013-07-03T21:16:43.123 回答