全局替换 github.com

直接全局替换所有请求 https://github.com/ 为对应的代理域名

其中 hub.fastgit.xyz 是之前 hub.fastgit.org (被墙)的替换。

现在还能用的(2022-04)的知名代理

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

$HOME/.gitconfig 配置应该增加以下内容

[url "https://hub.fastgit.xyz/"]
	insteadOf = https://github.com/

手动修改配置 $HOME/.gitconfig

这个方法比较通用,也可以直接修改 $HOME/.gitconfig

[http "https://skia.googlesource.com"]
    proxy = http://localhost:8080
[https "https://skia.googlesource.com"]
    proxy = http://localhost:8080
[http "https://googlesource.com"]
    proxy = http://localhost:8080
[https "https://googlesource.com"]
    proxy = http://localhost:8080
[https "https://googlesource.com"]
    proxy = http://localhost:8080
[https "https://github.com"]
    proxy = http://localhost:8080
[url "https://github.com"]
    proxy = http://localhost:8080/ # 本地 HTTP 代理服务