20

有人可以帮助我摆脱以下问题:

vijay13@ubuntu:~$ git clone git://anongit.kde.org/plasma-mediacenter

Cloning into 'plasma-mediacenter'...

fatal: read error: Connection reset by peer

vijay13@ubuntu:~$ git clone git@git.kde.org:plasma-mediacenter

Cloning into 'plasma-mediacenter'...

Read from socket failed: Connection reset by peer

fatal: The remote end hung up unexpectedly

如何摆脱以上两个问题?

4

7 回答 7

19

如果互联网连接也很好,只需运行

git gc 

然后再试一次。它清理不必要的文件并优化本地存储库。更多细节:git 文档

于 2015-12-22T11:25:28.027 回答
16

我也遇到过这个问题。

当我将“git://”替换为“https://”时,问题就解决了

root@ubuntu:~# git clone git://github.com/osrg/ryu.git
Cloning into 'ryu'...
fatal: read error: Connection reset by peer

root@ubuntu:~# git clone https://github.com/osrg/ryu.git
Cloning into 'ryu'...
remote: Counting objects: 25613, done.
remote: Compressing objects: 100% (5/5), done.
Receiving objects:  37% (9609/25613), 18.68 MiB | 60.00 KiB/s
于 2017-07-05T11:21:40.050 回答
0

删除存储库(但不是永久)时,这也可能是一个问题。在克隆之前,请确保在垃圾箱/回收站中删除了 repo。

或者按 SHIFT + DEL 永久删除文件夹/文件。

于 2017-09-21T09:26:43.907 回答
0

这可能是由于过时的 git 依赖库。尝试为您的操作系统更新curl 。

于 2019-01-17T06:06:45.490 回答
0

对我来说,这个问题发生在将我的 PHP 版本从 WAMP 中的 5.6 版本更改为 7.0.10 时。为了快速解决,恢复更改,修复了我的问题。

于 2020-10-08T05:57:36.493 回答
-1

对于第一个问题

vijay13@ubuntu:~$ git clone git://anongit.kde.org/plasma-mediacenter

Cloning into 'plasma-mediacenter'...

fatal: read error: Connection reset by peer

在这里,您尝试使用上述命令检查代码。我什至遇到这个错误:尝试签出代码时由对等方重置连接。

这是您的互联网连接问题。

检查您的互联网连接,然后重试。

它帮助了我。

于 2015-05-08T09:33:18.070 回答
-1

我尝试使用 git config --global http.postBuffer 157286400 但没有用。然后又试了一次,它可以工作,所以看起来像间歇性网络问题。

于 2021-11-19T09:50:29.330 回答