English 中文(简体)
吉唐·埃罗尔(RPC)失败;曲线92/2 溪流0未清理:CNRL(8) 发送包裹:在阅读副波段时意外脱节
原标题:GitHub Error: RPC failed; curl 92 http/2 stream 0 was not closed cleanly: CANCEL (err 8) | send-pack: unexpected disconnect while reading sideband

我正在与Gite Hubpo合作开展一个项目。 在过去3个月里,我能够“处理”、“承诺”和“缓冲”一切没有问题。 现在,我下载了一个数据集,其中包含大约12英磅的数据,我为这一数据创造了一个新的倍数。

我对已经出现在邮袋中的档案做了一些小改动(3个月),并做了“附加”、“承诺”和“推进”。

吉特·巴什在计算和压缩物体后, throw倒了这一错误:

GitHub Error: RPC failed; curl 92 http/2 stream 0 was not closed cleanly: CANCEL (err 8)
send-pack: unexpected disconnect while reading sideband packet
...
fatal: the remote end hung up unexpectedly
Everything up-to-date

这可能是在撰写物体时发生的。

www.un.org/Depts/DGACM/index_french.htm

  • set GIT_TRACE_PACKET=1
  • set GIT_TRACE=1
  • set GIT_CURL_VERBOSE=1
  • git config --global http.postBuffer 100000000
  • git config --global https.postBuffer 100000000

在最近尝试了上述所有解决办法之后,这一额外错误被推到50%的书写对象之后:

remote: fatal: pack exceeds maximum allowed size

吉特·巴什的错误简介

So, my question is: 1. Why is this happening? 2. How can I work around/solve this problem and successfully push my current workspace onto GitHub?

最佳回答
问题回答

1. Why is this happening?

  • Because you are trying to push a large file. (12 GB dataset)

2. How can I work around/solve this problem and successfully push my current workspace onto GitHub?

  • You can use Git Large File Storage that replaces large files such as audio samples, videos, datasets, and graphics with text pointers inside Git, while storing the file contents on a remote server like GitHub.com

在采取这一举动之后,它将解决这一问题。

$ git clone http://github.com/large-project-repo.git --depth 1
$ cd large-project-repo
$ git fetch --unshallow

使用:

git config --global url."[email protected]:".insteadOf "https://github.com/"   




相关问题
Why running a service as Local System is bad on windows?

I am trying to find out the difference between difference service account types. I tumbled upon this question. The answer was because it has powerful access to local resources, and Network Service ...

Programmatically detect Windows cluster configuration?

Does anyone know how to programatically detect that a Windows server is part of a cluster? Further, is it possible to detect that the server is the active or passive node? [Edit] And detect it from ...

get file icon for Outlook appointment (.msg)

I ve read Get File Icon used by Shell and the other similar posts - and already use SHFileInfo to get the associated icon for any given extension, and that works great. However, Outlook uses ".msg" ...

Identifying idle state on a windows machine

I know about the GetLastInputInfo method but that would only give me the duration since last user input - keyboard or mouse. If a user input was last received 10 minutes ago, that wouldn t mean the ...

Terminating a thread gracefully not using TerminateThread()

My application creates a thread and that runs in the background all the time. I can only terminate the thread manually, not from within the thread callback function. At the moment I am using ...

热门标签