gpt4 book ai didi

Git 克隆失败 - 致命 : The remote end hung up unexpectedly. 致命:早期 EOF 致命:索引包失败

转载 作者:行者123 更新时间:2023-12-05 09:11:56 28 4
gpt4 key购买 nike

我的电脑正确配置了 SSH,我在尝试克隆存储库时遇到了这个错误:

我运行这个命令来克隆存储库

git clone ssh://git-codecommit.us-west-2.amazonaws.com/v1/repos/NewsFeed-library library1

它给我一个错误:

Cloning into 'library1'...

remote: Counting objects: 510, done.

Connection to git-codecommit.us-west-2.amazonaws.com closed by remote

host. fatal: The remote end hung up unexpectedly fatal: early EOF

fatal: index-pack failed

如何解决此错误以及为什么会出现此错误?


编辑:我已经试过了但是没有成功:

#Windows
set GIT_TRACE_PACKET=1
set GIT_TRACE=1
set GIT_CURL_VERBOSE=1

git config --global ssh.postBuffer 524288000 

最佳答案

如果您有在 http 上克隆的替代选项,请在 gitbash 中运行以下任何命令并尝试克隆存储库,它应该可以工作。

  1. git config --global http.postBuffer 524288000
  2. git config --global http.postBuffer 1048576000

而且,如果您没有选择 http 并希望继续使用 ssh。您可以在客户端或服务器上配置 SSH keepAlive。

在服务器上配置
编辑

~/.ssh/config  
ServerAliveInterval 60
ServerAliveCountMax 5

在客户端配置编辑 /etc/ssh/sshd_config

ClientAliveInterval 60
ClientAliveCountMax 5

例如

echo 'ClientAliveInterval 60' | sudo tee --append /etc/ssh/sshd_config

编辑:git config --global ssh.postBuffer 1048576000

尝试增加缓冲区,我在我的存储库中面临同样的问题。

关于Git 克隆失败 - 致命 : The remote end hung up unexpectedly. 致命:早期 EOF 致命:索引包失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59353753/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com