为 git 设置代理

有些时候,git 的速度很慢,我们可能需要设置一个合适的代理来加速。

设置代理

全局设置代理:

git config --global http.proxy socks5h://127.0.0.1:7891

仅为 GitHub 设置代理:

git config --global http.https://github.com.proxy socks5h://127.0.0.1:7891

为 SSH 协议设置代理:在 ~/.ssh/config 文件内添加以下内容:

Host github.com
    ProxyCommand nc -X 5 -x 127.0.0.1:7891 %h %p

取消代理

git config --global --unset http.proxy

~/.ssh/config 中的代理设置删除。

为 git 设置代理》有3个想法

  1. aisaka

    因为今天我也恰好在寻觅新主题就漂移过来了233
    换框架太麻烦了,只有换换主题才能维持生活这个样子

    回复

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注