如果想快速Clone Github的项目。
我推荐三个方案,1、使用Gitee作为中转;2、使用油猴插件;3、使用Git代理。
1、Gitee中转
待更新
2、油猴插件——Github 增强
插件地址为GitHub - XIU2/UserScript: 🐵 自用的一些乱七八糟 油猴脚本~
待更新
3、Git配置代理
如果你有自用或者从网上找到的代理服务器,可以考虑配置Git代理。
你可以选择配置全局代理,如下127.0.0.1:7890是我本机的代理地址,你也可以使用自己的服务器代理。
# http的代理
git config --global http.proxy 127.0.0.1:7890
# https的代理
git config --global https.proxy 127.0.0.1:7890
当然你也可以选择只配置Github网站的定向代理。
git config --global http.https://github.com.proxy http://127.0.0.1:7890
git config --global https.https://github.com.proxy http://127.0.0.1:7890
如果在可以正常访问的环境下,想要取消代理,可以使用如下命令。
git config --global --unset http.https://github.com.proxy
git config --global --unset https.https://github.com.proxy