Github 程序员加速 http和ssh代理设置

简单直接的输出干货,复制->粘贴->完活.

Http代理设置

全局

bash 复制代码
git config --global http.proxy socks5://127.0.0.1:10808

指定github

bash 复制代码
git config --global http.https://github.com.proxy socks5://127.0.0.1:10808

SSH代理设置

Linux

配置文件在home目录下的 .ssh/config 其中 nc 程序位于 /usr/bin/nc

bash 复制代码
$ cat ~/.ssh/config

Host github.com
Hostname ssh.github.com
User git
Port 443
ProxyCommand nc -v -x 127.0.0.1:10808 %h %p

Windows

使用Git Bash

bash 复制代码
$ cat ~/.ssh/config

Host github.com
Hostname ssh.github.com
User git
Port 443
ProxyCommand "C:\Program Files\Git\mingw64\bin\connect.exe" -S 127.0.0.1:10808 %h %p
相关推荐
JinSo1 天前
Ultracite:为 AI 时代打造的零配置代码规范工具
前端·javascript·github
uhakadotcom1 天前
Next.js 从入门到精通(1):项目架构与 App Router—— 文件系统路由与目录结构全解析
前端·面试·github
x***58701 天前
GitHub星标10万+的Redis项目,使用教程
数据库·redis·github
九夜1 天前
基于 .ibd 文件恢复 MySQL 数据全流程
后端·github
油丶酸萝卜别吃1 天前
GitHub 上查找中国乡镇经纬度范围数据的开源项目
git·github
郭小铭2 天前
React Suite v6:面向现代化的稳健升级
react.js·前端框架·github
小莫分享2 天前
Github Action 一键部署HTML 静态服务
前端·html·github
u***j3242 天前
GitHub上10个优秀的微服务开源项目
微服务·开源·github
CozyOct12 天前
⚡️2025-11-19GitHub日榜Top5|30秒部署热点助手
github
Zzz 小生2 天前
Github-Go语言AI智能体开发套件:构建下一代智能代理的利器
人工智能·golang·github