当git克隆时,远程终端意外挂起。我的git在尝试克隆存储库一段时间后,客户端重复失败,出现以下错误。这里有什么问题?注:我已经向git主机提供商注册了我的ssh密钥。Receiving objects: 13% (1309/10065), 796.00 KiB | 6 KiB/s
fatal: The remote end hung up unexpectedly
3 回答
SMILET
TA贡献1796条经验 获得超4个赞
http.postBuffer
但是,如果您可以访问GitLab机器,则有一个解决办法。git bundle
.
转到源机器上的git存储库。 跑 git bundle create my-repo.bundle --all
将my-repo.bundle文件(例如,用rsync)传输到目标计算机 在目标机器上,运行 git clone my-repo.bundle
git remote set-url origin "path/to/your/repo.git"
git push
- 3 回答
- 0 关注
- 1172 浏览
添加回答
举报
0/150
提交
取消