5

试图将 PNG 推送到我的 github 要点但没有成功。

$ git clone https://gist.github.com/6124716.git
$ cd 6124716
$ ls
fed.json     index.html     vermont.json

然后我可以修改 index.html 并将更改推送到我的 github 存储库。但是,一旦我将 png 文件保存到 repo,我就无法推送:

$ git push
Counting objects: 4, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 25.48 KiB, done.
Total 3 (delta 0), reused 0 (delta 0)
error: RPC failed; result=52, HTTP code = 0
fatal: The remote end hung up unexpectedly
fatal: The remote end hung up unexpectedly

阅读有关该问题的信息,我看到了增加缓冲区大小的建议:

$ git config http.postBuffer 524288000

但我仍然收到相同的错误消息。此外,vermont.json 比我要上传的 PNG 大得多。

$ ls -la
drwxr-xr-x   7 mparrilla  staff     238 Aug  2 09:53 .
drwxr-xr-x   7 mparrilla  staff     238 Aug  2 09:53 ..
drwxr-xr-x  14 mparrilla  staff     476 Aug  2 09:56 .git
-rw-r--r--   1 mparrilla  staff    5635 Aug  2 09:52 fed.json
-rw-r--r--   1 mparrilla  staff    3381 Aug  2 09:52 index.html
-rw-r--r--   1 mparrilla  staff   25776 Aug  2 09:28 thumbnail.png
-rw-r--r--   1 mparrilla  staff  187388 Aug  2 09:52 vermont.json
4

1 回答 1

11

我不确定使用 HTTPS 有什么问题,但作为替代方案,您可以尝试使用 SSH:

通过 SSH 克隆 gist -

git clone git@github.com:6124716.git
于 2013-08-02T14:10:34.707 回答