[環境] windows7 + cygwin
githubにpushしようとしたらエラー発生。
git push -u origin master
Counting objects: 48, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (41/41), done.
error: RPC failed; result=55, HTTP code = 0 KiB/s
fatal: The remote end hung up unexpectedly
Writing objects: 100% (48/48), 7.53 MiB | 453 KiB/s, done.
Total 48 (delta 5), reused 0 (delta 0)
fatal: The remote end hung up unexpectedly
途中まで行くのに。
httpsで通らないから、横着してhttpでやってたから?
git config –global http.sslVerify false
これで
git remote rm origin
git remote add https://(リポジトリ)
git push -u origin master
あがりました
そろそろ理解しないと。。