githubにおけるプルリクエストのエラーについて
Q&A
解決したいこと
githubにプルリクエストをしたいです。
しかし
git push origin develop
を実行すると下記の様なエラーが出ます。
Enumerating objects: 86, done.
Counting objects: 100% (86/86), done.
Delta compression using up to 8 threads
Compressing objects: 100% (65/65), done.
Writing objects: 100% (70/70), 21.87 MiB | 43.83 MiB/s, done.
Total 70 (delta 36), reused 1 (delta 0), pack-reused 0
error: RPC failed; curl 18 transfer closed with outstanding read data remaining
send-pack: unexpected disconnect while reading sideband packet
fatal: the remote end hung up unexpectedly
Everything up-to-date
git config --global http.postBuffer 524288000
上記のコマンド等を試しましたがエラーは変わりませんでした。
0