从 AWS Codecommit 克隆存储库

Cloning repository from AWS Codecommit

我目前正在使用 SSH 密钥将存储库从 AWS Codecommit 克隆到我的本地计算机。我的

ssh git-codecommit.us-east-2.amazonaws.com

已成功连接。

我的问题是,当我 运行 这个:

git clone ssh://git-codecommit.us-east-2.amazonaws.com.amazonaws.com/v1/repos/Project

它正在克隆我的项目,但在 100% 克隆之后,我不断收到此错误

remote: Counting objects: 1024, done.
client_loop: send disconnect: Connection reset by peer KiB/s
fatal: the remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed

我找不到关于 google 的答案,希望有人能帮助我解决这个问题。这些错误的可能原因是什么?先感谢您!

尝试增加缓冲区

git config --global ssh.postBuffer 1048576000

如果不行就用TortoiseGit软件, 当我面对像你这样的

时,它帮助了我

谢谢大家!它现在工作。增加 postbuffer 有很大帮助,但在我的情况下,这不是它工作的原因。为了安全起见,你们应该检查您的防火墙、VPN 连接或您的网络。

此站点可能会帮助您解决问题 Git Clone Fails - fatal: The remote end hung up unexpectedly. fatal: early EOF fatal: index-pack failed