使用代理网站
https://ghproxy.com/ + github地址
例:
https://ghproxy.com/https://github.com/kubernetes/kubernetes.git
使用本地代理
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.proxy
git config --global --unset https.proxy
查看已有配置
git config --global -l