host或者码云啥的都各有自己的缺点:
host:目标ip变了需要多次更改,不能一次设置一直生效
码云:码云本身克隆github也很慢
本文主要记录通过代理的方式进行配置,如果不懂或不具备这个前提请自觉点击x退出。
方案一:下载:代理方式选择全局,然后直接down
方案二:clone:
MAC:
设置代理:
git config --global http.proxy 'socks5://127.0.0.1:1086'
git config --global https.proxy 'socks5://127.0.0.1:1086'
取消代理:
git config --global --unset http.proxy
git config --global --unset https.proxy
最后这个端口我用的是“高级设置”-》“本地Socks5 监听端口”
Windows:
git config --global http.proxy http://127.0.0.1:1080
git config --global https.proxy https://127.0.0.1:1080