各位有没有遇到过 github push 死活推流不上去的情况?

22次阅读

共计 784 个字符,预计需要花费 2 分钟才能阅读完成。

私人库用了几年了,最近几次 push 不知道为什么都推不上去,有没有老哥遇到过类似情况。库的总大小 1.6G,内有二进制文件,但没有特别大的,最大的应该不超过 25M,最近更新的内容应该没有超过 10M 的文件,也没有二进制文件。

命令行记录:

PS C:UsersUSERDocumentsPrivate> git config --global http.postBuffer 524288000
PS C:UsersUSERDocumentsPrivate> git push --verbose --progress
Pushing to https://github.com/USER/Private.git
Enumerating objects: 52, done.
Counting objects: 100% (52/52), done.
Delta compression using up to 8 threads
Compressing objects: 100% (48/48), done.
Writing objects: 100% (48/48), 19.15 MiB | 9.95 MiB/s, done.
Total 48 (delta 41), reused 0 (delta 0), pack-reused 0
POST git-receive-pack (20079737 bytes)

然后在这步会卡几分钟,之后报错:

error: RPC failed; curl 55 Send failure: Connection was reset
send-pack: unexpected disconnect while reading sideband packet
fatal: the remote end hung up unexpectedly
Everything up-to-date
PS C:UsersUSERDocumentsPrivate>

测试了一下网络没啥问题,其他库 push 和 pull 都没问题

正文完
 0