跳至主要內容

git使用socks代理

马龙伟...小于 1 分钟软件/工具教程git

参考链接

git 命令 使用socks代理ip教程open in new window

配置 Git 全局代理设置

git config --global http.proxy socks5://proxy.example.com:1080

git config --global https.proxy socks5://proxy.example.com:1080

如果代理服务器需要用户名和密码认证,您可以在命令中加入用户名和密码

git config --global http.proxy socks5://username:password@proxy.example.com:1080

git config --global https.proxy socks5://username:password@proxy.example.com:1080

验证设置

git config --global --get http.proxy

git config --global --get https.proxy

取消代理设置

git config --global --unset http.proxy

git config --global --unset https.proxy
你认为这篇文章怎么样?
  • 0
  • 0
  • 0
  • 0
  • 0
  • 0
评论
  • 按正序
  • 按倒序
  • 按热度
Powered by Waline v2.15.5