配置 Git 使用 SOCKS 代理,本博僅針對 HTTP 協議。
通過命令配置
git config --global http.proxy 'socks5://127.0.0.1:1080'
以上命令其實也是修改 .gitconfig 配置文件。所以可以直接打開 .gitconfig 配置文件進行修改。
編輯 .gitconfig 配置文件
- 打開 .gitconfig 配置文件:
vim ~/.gitconfig
- 添加以下兩行內容
[http]
proxy = socks5://127.0.0.1:1080
Git 目前是支持三種協議的,而本文僅說明了在 HTTP 協議下的配置。
若要知道其他協議的配置,請參考:配置 Git 使用 Proxy