pkg・ports アップデート - Git - RPC failed; curl
- 1. 概要
- 2. 対処
1. 概要
発生したのは、2022年1月28日です。
「ports」を更新しようと
git -C /usr/ports pull
すると
remote: Enumerating objects: 1343, done.
remote: Counting objects: 100% (1343/1343), done.
remote: Compressing objects: 100% (564/564), done.
error: RPC failed; curl 18 transfer closed with outstanding read data remaining
error: 1327 bytes of body are still expected
fetch-pack: unexpected disconnect while reading sideband packet
fatal: early EOF
fatal: fetch-pack: invalid index-pack output
*** Error code 1
Stop.
てなことになっちゃう。
最初は、「回線の調子が悪いんかな?」と思って、同じコマンドを実行しましたが。
何度やっても同じになる。
で、「error: RPC failed; curl 18」で検索して、下記のサイトを見つけました。
「【github】git で pull した時に『RPC failed; curl 18 transfer closed with outstanding read data remaining』で怒られた時の対処方」
2. 対処
下記のおまじない一発です。
git config --global http.postBuffer 2M
コマンド実行後、冒頭のコマンドを実行したら、何事もなかったかのように進行していきました。
|
|