设置http、https代理

git config --global http.proxy socks5://127.0.0.1:1080

git config --global https.proxy socks5://127.0.0.1:1080

查看http、https代理配置情况

git config --global --get http.proxy

git config --global --get https.proxy

取消http、https代理配置

git config --global --unset http.proxy

git config --global --unset https.proxy

相关文章:

  • 2021-07-23
  • 2021-06-18
  • 2022-12-23
  • 2021-07-15
  • 2021-05-25
  • 2021-11-27
  • 2021-12-23
猜你喜欢
  • 2021-07-06
  • 2021-11-29
  • 2022-12-23
  • 2022-12-23
  • 2022-02-08
  • 2021-12-29
相关资源
相似解决方案