LoginSignup
0
0

More than 3 years have passed since last update.

git clone で the remote end hung up unexpectedly

Posted at

git cloneができない

warning: templates not found in /usr/local/git/share/git-core/templates
error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54
fatal: the remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed

闘いの記録

postBufferを調整セヨ っていうところからスタートしたものの、
結局は depth にも手を出さないと解決しなかった。

 1445  git config http.postBuffer postBuffer 2M
 1446  git clone https://github.com/(略)
 1447  git config http.postBuffer postBuffer 4M
 1448  git clone https://github.com/(略)
 1449  git config http.postBuffer postBuffer 8M
 1450  git clone https://github.com/(略)
 1451  git config http.postBuffer postBuffer 16M
 1452  git clone https://github.com/(略)
 1453  git config http.postBuffer postBuffer 32M
 1454  git clone https://github.com/(略)
 1455  git config http.postBuffer postBuffer 64M
 1456  git clone https://github.com/(略)
 1457  git config http.postBuffer postBuffer 150M
 1458  git clone https://github.com/(略)
 1459  git config http.postBuffer postBuffer 300M
 1460  git clone https://github.com/(略)
 1461  git clone -b develop --depth 1 https://github.com/(略)
 1462  cd (略)
 1464  git fetch --depth 2
 1465  git fetch --depth 3
 1466  git fetch --depth 4
 1467  git fetch --depth 5
 1468  git fetch --depth 10
 1469  git fetch --depth 20
 1470  git fetch --unshallow

参考

git clone 時に出た 「the remote end hung up unexpectedly」に辛勝した話

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0