提交和拉取github上的库总是失败,这里记录一下如何使用代理解决。
首先找到端口,记住它的端口
然后使用git命令
cpp
# HTTP/HTTPS 协议
git config ----global http.url.proxy http://127.0.0.1:port
# 以 Github 为例
git config ----global http.https://github.com.proxy http://127.0.0.1:port
# SOCKS5 协议
git config ----global http.url.proxy socks5://127.0.0.1:port
# 以 Github 为例
git config ----global http.https://github.com.proxy socks5://127.0.0.1:port
完成。就可以拉取了。