zoukankan      html  css  js  c++  java
  • git clone error: RPC failed; result=35, HTTP code = 0 fatal: The remote end hung up unexpectedly

    报错如下:

    1 [15:08:30 root@localhost src]#git clone https://github.com/openresty/echo-nginx-module.git
    2 Cloning into 'echo-nginx-module'...
    3 error: RPC failed; result=35, HTTP code = 0
    4 fatal: The remote end hung up unexpectedly

    解决办法,将https//xxx 修改为git//xxx

    1 [15:15:52 root@localhost src]#git clone git://github.com/openresty/echo-nginx-module.git
    2 Cloning into 'echo-nginx-module'...
    3 remote: Enumerating objects: 3025, done.
    4 remote: Counting objects: 100% (7/7), done.
    5 remote: Compressing objects: 100% (7/7), done.
    6 remote: Total 3025 (delta 1), reused 3 (delta 0), pack-reused 3018
    7 Receiving objects: 100% (3025/3025), 1.16 MiB | 313.00 KiB/s, done.
    8 Resolving deltas: 100% (1625/1625), done.
    ------------------------------------------------------------------------------------------------------------------------- ------------------------------------------------------- 博客均为个人笔记,无所追求,仅供参考~~~ QQ--2382990774
  • 相关阅读:
    AOP概述
    AOP-动态代理
    IOC容器和Bean的配置
    Spring框架概述
    异常
    Optional 类
    Stream API
    方法引用(Method References)
    函数式(Functional)接口
    stm8笔记1-搭建工程+孤独的小灯闪烁
  • 原文地址:https://www.cnblogs.com/alexlv/p/14837346.html
Copyright © 2011-2022 走看看