目录

Github加速

misaraty 更新 | 2022-11-14
前言
Github加速的可行性策略。

加速方案

  • Linux集群上Github加速方案有很多,比如在Host文件中增加Github IPclash-linux-amd64-v1.8.0FastGithubfgitFastGit镜像等。

  • 我倾向FastGit镜像方案,操作简单,效果显著。

FastGit-Linux

配置,1

1
2
3
4
mk ~/.git
# git config --global url."https://hub.fastgit.org/".insteadOf "https://github.com/"
git config --global url."https://ghproxy.com/https://github.com/".insteadOf "https://github.com/"
git config protocol.https.allow always

查询,

1
git config --global --list

取消的话,删除/home/misaraty/.gitconfig即可。

FastGit-Win10

打开.gitconfig删除,

1
2
[url "https://hub.fastgit.org/"]
  insteadOf = https://github.com/

油猴脚本

在Chrome浏览器中,我们也可以通过Greasy Fork安装Github增强-高速下载脚本,进而提供更多git clone下载地址。


  1. ghproxy ↩︎