SSH接続でGitに大容量ファイルをpushできない
GitHubにssh接続していたのだが、大容量のファイル(といっても2Mくらい)をpush
しようとしたときに、次のようなエラーが出た
Enumerating objects: 19, done. Counting objects: 100% (19/19), done. Delta compression using up to 4 threads Compressing objects: 100% (15/15), done. Connection to github.com closed by remote host. send-pack: unexpected disconnect while reading sideband packet fatal: the remote end hung up unexpectedly
fatal: the remote end hung up unexpectedly
やその上のメッセージなどでググったら「configでBufferのサイズを変えてみたら?」とか出たのでやってみたがうまくいかなかった
そこで、根本的解決ではないかもしれないが、.git/config
の[remote "origin"]
のURLを、HTTPSのものに変えたらうまくいった
[remote "origin"] - url = git@git@github.com:~~~ + url = https://github.com/~~~