Loading... ## 设置https 代理 > **注意--设置了代理后,下载还是很慢就直接将代理开成全局代理,重试就行了** Git代理有两种设置方式,分别是全局代理和只对Github代理,建议只对github 代理。 代理协议也有两种,分别是使用http代理和使用socks5代理,建议使用socks5代理。 注意下面代码的端口号需要根据你自己的代理端口设定,比如我的代理socks端口是10808。 **全局设置(不推荐)** ```bash #使用http代理 git config --global http.proxy http://127.0.0.1:10809 git config --global https.proxy https://127.0.0.1:10809 #使用socks5代理 git config --global http.proxy socks5://127.0.0.1:10808 git config --global https.proxy socks5://127.0.0.1:10808 ``` **只对Github代理(推荐)** ```bash #使用socks5代理(推荐) git config --global http.https://github.com.proxy socks5://127.0.0.1:10808 #使用http代理(不推荐) git config --global http.https://github.com.proxy http://127.0.0.1:10809 ``` **取消代理** 当你不需要使用代理时,可以取消之前设置的代理。 ```bash git config --global --unset http.proxy git config --global --unset https.proxy ``` 最后修改:2023 年 04 月 25 日 © 允许规范转载 打赏 赞赏作者 支付宝微信 赞 如果觉得我的文章对你有用,请随意赞赏