Git “efrror: RPC failed; result=55, HTTP code = 0” on push

前端 未结 2 1203
旧时难觅i
旧时难觅i 2021-01-02 15:11

I\'ve spent all day on this one and could really use some help. When I try to push a relatively large commit,

Writing objects: 100% (21/21), 908.07 KiB | 0          


        
2条回答
  •  [愿得一人]
    2021-01-02 15:37

    I experienced the issue due to a misconfiguration, where I pointed to a remote prefixed with http:// instead of https:// the answer hinted on SSL and this helped me to a solution for my issue.

    So my remote configuration should be written:

    $ git remote add origin https://github.com/jonasbn/perl-workflow.git
    

    over:

    $ git remote add origin http://github.com/jonasbn/perl-workflow.git
    

    Take care,

    jonasbn

提交回复
热议问题