zoukankan      html  css  js  c++  java
  • Golang通过git clone beego框架报错 error: while accessing https://github.com/astaxie/beego/info/refs fatal: HTTP request failed package github.com/astaxie/beego: exit status 128

    在Centos6.4尝试搭建beego框架,使用git命令clone时报错

    # cd .; git clone https://github.com/astaxie/beego /www/project/src/github.com/astaxie/beego
    Initialized empty Git repository in /www/project/src/github.com/astaxie/beego/.git/
    error:  while accessing https://github.com/astaxie/beego/info/refs
    
    fatal: HTTP request failed
    package github.com/astaxie/beego: exit status 128

    解决办法有三种

    第一,升级git

    第二,在github下载源码包放到对应目录

    第三,命令修复

    git config --global url."git://github.com/astaxie/beego".insteadOf "https://github.com/astaxie/beego"    //命令修复

    执行完成之后,继续执行命令clone  :go get github.com/astaxie/beego

  • 相关阅读:
    【02】AJAX XMLHttpRequest对象
    【01】什么是AJAX
    NPM是什么
    nodejs npm常用命令
    angular(转)
    s6 传输层
    s6-9 TCP 定时器
    s6-8 TCP 拥塞控制
    s6-7 TCP 传输策略
    s6-6 TCP 连接释放
  • 原文地址:https://www.cnblogs.com/wt645631686/p/9670314.html
Copyright © 2011-2022 走看看