Github 国内访问加速

全局替换 github.com 直接全局替换所有请求 https://github.com/ 为对应的代理域名 其中 hub.fastgit.xyz 是之前 hub.fastgit.org (被墙)的替换。 现在还能用的(2022-04)的知名代理 https://ghproxy.cn/https://github.com https://hub.fastgit.xyz/ 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 代理服务

<span title='2022-02-01 23:25:01 +0800 +0800'>2022/02/01 Feb</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;68 words&nbsp;·&nbsp;SCys