Skip to content

Instantly share code, notes, and snippets.

@CHN-STUDENT
Forked from chenshengzhi/git_ssh_proxy.md
Created March 27, 2024 08:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CHN-STUDENT/90d5b9e40a084b966d8e8abb54e0018f to your computer and use it in GitHub Desktop.
Save CHN-STUDENT/90d5b9e40a084b966d8e8abb54e0018f to your computer and use it in GitHub Desktop.
git ssh 代理设置

仅为 GitHub 设置代理

git 代理

设置 git config --global http.https://github.com.proxy socks5://127.0.0.1:1086
设置完成后, ~/.gitconfig 文件中会增加以下条目:

[http "https://github.com"]
    proxy = socks5://127.0.0.1:1086
ssh 代理

修改 ~/.ssh/config 文件

Host github.com
    User git
    ProxyCommand nc -v -x 127.0.0.1:1086 %h %p
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment