GitHub、Google等镜像加速地址收集

server/2024/12/15 8:54:34/

GitHub、Google等镜像加速地址收集

摘要
本文用于收集GitHub、Google等镜像/加速地址。

GitHub

GitHub加速地址一览

站源地址缓存
github.comwww.fastgithub.com
raw.githubusercontent.com
github.githubassets.com
customer-stories-feed.github.com480 分钟
Github Download480 分钟
GitHub Archive
  • cnpmjs.org:https://github.com.cnpmjs.org/
  • gitclone.com:https://gitclone.com/
  • gitee:https://gitee.com/mirrors
  • GitHub 文件加速:https://gh.api.99988866.xyz/
  • Github 仓库加速:https://github.zhlh6.cn/
  • Github 仓库加速:http://toolwa.com/github/

使用

1.加速 clone

方法一:加前缀

直接在copy出来的url前加https://gh.api.99988866.xyz/即可,也可以直接访问,在input输入。

# 原地址
git clone https://github.com/docker/compose.git
# 加速下载方法一
git clone https://gh.api.99988866.xyz/https://github.com/docker/compose.git
# 加速下载方法二
git clone https://ghproxy.com/https://github.com/docker/compose.git
方法二:替换GitHub为加速域名
# 原地址
git clone https://github.com/docker/compose.git
# 加速下载方法一
git clone https://hub.fastgit.xyz/docker/compose.git
# 加速下载方法二
git clone https://github.com.cnpmjs.org/docker/compose.git
# 加速下载方法三
git clone https://gitclone.com/github.com/docker/compose.git
方法三:配置git自动替换
  • 使用镜像地址替换所有指向 GitHub 的链接
git config --global url."https://hub.fastgit.xyz/".insteadOf "https://github.com/"
git config protocol.https.allow always
  • 查看git配置信息
git config --global --list
  • 取消设置
git config --global --unset url."https://hub.fastgit.xyz/".insteadof

2.加速 Release

对于正常的 clone , push 操作,FastGit 已经提供了相当完善的操作。对于 Release 和源码存档的下载,我们可以使用如下方法进行操作。

  • Release
# 假设下载链接为 https://github.com/A/A/releases/download/1.0/1.0.tar.gz
wget https://download.fastgit.org/A/A/releases/download/1.0/1.0.tar.gz
  • Codeload
# 假设下载链接为 https://hub.fastgit.xyz/A/A/archive/master.zip
# 或者 https://codeload.github.com/A/A/zip/master
wget https://download.fastgit.org/A/A/archive/master.zip

3.加速 raw

# 原地址 
wget https://raw.githubusercontent.com/kubernetes/kubernetes/master/README.md
# 加速下载方法一
wget https://raw.staticdn.net/kubernetes/kubernetes/master/README.md
# 加速下载方法二
wget https://raw.fastgit.org/kubernetes/kubernetes/master/README.md

Google

谷歌镜像列表——每个月定期更新:https://snailwish.com/

谷歌搜索 镜像

  • Google Mirror 1:https://search.aust.cf/
  • Google Mirror 2:https://search.ecnu.cf/
  • Google Mirror 3:https://search.ahnu.cf/

Google scholar 谷歌学术镜像

思谋学术导航:https://ac.scmor.com/

  • scqylaw:http://scholar.scqylaw.com/
  • 熊猫学术:https://sc.panda321.com/
  • HiQQ学术搜索(有链接转到sci-hub):https://so.hiqq.com.cn/
  • 学术网:https://www.scholarnet.cn/
  • 学术屋:http://sci.xueshuwu.cn/

http://www.ppmy.cn/server/150315.html

相关文章

【优选算法】字符串

目录 一、[最长公共前缀](https://leetcode.cn/problems/longest-common-prefix/description/)二、[最长回文子串](https://leetcode.cn/problems/longest-palindromic-substring/description/)三、[二进制求和](https://leetcode.cn/problems/add-binary/description/)四、[字…

一文讲清数据库的分库分表

想必大家在面试的时候都被问到过数据库的分库分表应该怎么做。 分库分表指的是是将大型数据库分割成多个小型数据库或表格的技术,旨在通过分散数据来提升性能、增加可扩展性和简化管理。随着数据量的增长,传统的单体数据库可能会遭遇性能瓶颈&#xff0…

画图,matlab,

clear;close all;clc;tic;dirOutput dir(*.dat); % 罗列所有后缀-1.dat的文件列表,罗列BDDATA的数据 filenames string({dirOutput.name}); % 提取文件名%% 丢包统计 FILENAMES [""]; LOSS_YTJ [ ]; LOSS_RAD [ ]; LOSS_ETH [ ]…

如何有效地规避空格的输入?

我发现你不管是使用C语言的gets函数还是使用c的getline函数都不能躲避空格&#xff0c;只能躲避回车&#xff0c;那么当我想规避空格的时候&#xff0c;我应该使用什么捏&#xff1f; 天选符号---->>>> "%s" <<<<------- 如果你只是来找一…

使用idea创建一个JAVA WEB项目

文章目录 1. javaweb项目简介2. 创建2.1 idea新建项目2.2 选择&#xff0c;命名2.3 打开2.4 选择tomcat运行2.5 结果 3. 总结 1. javaweb项目简介 JavaWeb项目是一种基于Java技术的Web应用程序&#xff0c;主要用于开发动态网页和Web服务。这种项目能够构建在Java技术栈之上&a…

航空航天总线协议分析ARINC429

ARINC429是商用飞机和运输机运用最广泛的总线之一&#xff0c;ARINC是美国航空无线电公司(Aeronautical Radio INC.)的缩写&#xff0c;ARINC429总线协议是美国航空电子工程委员会于1977年7月提出发表并获批准使用&#xff0c;它的规范全称是数字式信息传输系统(Digital Inform…

排队论、负载均衡和任务调度关系

目录 排队论、负载均衡和任务调度关系 一、排队论 二、负载均衡 三、任务调度 四、总结 排队论、负载均衡和任务调度关系 排队论为负载均衡和任务调度提供了数学理论和方法支持 排队论、负载均衡和任务调度是三个相关但不同的概念。以下是对这三个概念的详细解释和它们之…

软考高级 架构师 第六章 计算机系统其他基础知识

第六章其他计算机系统知识 1.计算机语言 计算机语言主要由一套指令构成&#xff0c;这种指令一般包含三大部分&#xff1a;表达式、流程控制和集合。 表达式&#xff1a;变量、常量、字面量和运算符 流程控制&#xff1a;分支、循环、函数和异常 集合&#xff1a;字符串、数组…