Github fatal: The remote end hung up unexpectedly

昨晚为 dp2 系统第一次上传代码到 github 的时候,用 VS2013 的发布功能屡屡报错,用 Github 的 Git for Windows 的图形界面发布也报错,然后不得已用它的命令行 push,没能成功,很多次是提示:fatal: The remote end hung up unexpectedly。

在 StackOverflow 中搜到这样一篇文字:

http://stackoverflow.com/questions/15240815/git-fatal-the-remote-end-hung-up-unexpectedly

Git, fatal: The remote end hung up unexpectedly

里面介绍了一个方法,在 git 命令行执行

git config http.postBuffer 524288000

经过漫长的等待,成功

C:\cs4.0\dp2 [master +3 ~0 -0 !]> git config http.postBuffer 524288000
C:\cs4.0\dp2 [master +3 ~0 -0 !]> git push --all
Counting objects: 3882, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (3811/3811), done.
Writing objects: 100% (3881/3881), 59.85 MiB | 4.79 MiB/s, done.
Total 3881 (delta 1750), reused 0 (delta 0)
To https://github.com/DigitalPlatform/dp2.git
   ???????..???????  master -> master


你可能感兴趣的:(github,error,git)