zoukankan      html  css  js  c++  java
  • Github国内mirror加速

    https://blog.csdn.net/networken/article/details/105122778

    fastgit.org
    https://doc.fastgit.org/

    gitclone.com
    https://gitclone.com/

    gitee
    https://gitee.com/mirrors

    cnpmjs.org
    https://github.com.cnpmjs.org/

    克隆加速

    #原地址
    git clone https://github.com/kubernetes/kubernetes.git

    #改为
    git clone https://github.com.cnpmjs.org/kubernetes/kubernetes.git
    #或者
    git clone https://hub.fastgit.org/kubernetes/kubernetes.git
    #或者
    git clone https://gitclone.com/github.com/kubernetes/kubernetes.git

    release下载加速

    #原地址
    wget https://github.com/goharbor/harbor/releases/download/v2.0.2/harbor-offline-installer-v2.0.2.tgz

    #改为
    wget https://hub.fastgit.org/goharbor/harbor/releases/download/v2.0.2/harbor-offline-installer-v2.0.2.tgz

    免替换方法

    git config --global url."https://hub.fastgit.org".insteadOf https://github.com

    查看git配置信息
    git config --global --list

    取消设置
    git config --global --unset url.https://github.com/.insteadof

    raw文件下载加速

    #原地址:
    wget https://raw.githubusercontent.com/kubernetes/kubernetes/master/README.md

    #替换为
    wget https://raw.staticdn.net/kubernetes/kubernetes/master/README.md

    提供web界面的github资源加速网站:

    GitHub 文件加速:https://gh.api.99988866.xyz/

    Github仓库加速:https://github.zhlh6.cn/

    Github仓库加速:http://toolwa.com/github/

  • 相关阅读:
    基础数据结构-线性表-顺序表的合并操作
    基础数据结构-线性表-顺序表
    后向引用(转)
    PHP正则表达式的快速学习方法
    c语言结构体中的冒号的用法
    C语言中可变参数的用法
    C语言snprintf函数
    C语言宏与单井号(#)和双井号(##)
    gcc 的visibility 使用
    __attribute__机制介绍 (转)
  • 原文地址:https://www.cnblogs.com/liuzhenwei/p/14467520.html
Copyright © 2011-2022 走看看