最近更新于 2024-05-05 14:18
相关:
- Linux 下代理客户端:https://blog.iyatt.com/?p=9937
- Linux 下设置代理:https://blog.iyatt.com/?p=5002
http 代理服务器
设置 git 的 http 代理
git config --global http.proxy http://[IP]:[Port]
设置 git 的 ssh 代理
git config --global core.sshCommand "ssh -o ProxyCommand='connect -H [IP]:[Port] %h %p'"
socks5 代理服务器
设置 git 的 http 代理
git config --global http.proxy socks5://[IP]:[Port]
Windows 下 git 代理配置