怎么在 push 代码到 github 时用上小飞机?

最近很多朋友都提到 github 很难打开,开了小飞机能访问 github 网站了,但是在 push 代码时又没办法 push 上去。

遇到的报错日志大概是这样的:

vbnet 复制代码
fatal: unable to access 'https://github.com/your-user-name/your-repo.git/': Failed to connect to github.com port 443 after 21057 ms: Timed out

很明显,是网络超时了。并且重试很多次也没有什么起色。

我们心里可能会想,明明我已经科学上网了,为啥 github 还 push 不上去?这是因为 git 默认是不会使用系统网络代理的,即便我们的某猫工具已经被设置为系统网络代理,还是解决不了往 github push 代码的问题。

那么怎么在 push 代码到 github 时用上小飞机呢?

其实只要用到网络请求的,基本上都可以设置代理,git 也不例外。

首先,我们找到代理工具的网络端口,以某猫为例,一般是 7890 端口。

然后,通过 git 提供的配置能力设置 http 和 https 代理。

我们可以先查看一下之前有没有设置过代理,

lua 复制代码
git config --global http.proxy
git config --global https.proxy

如果执行上述命令后没有任何输出,说明没有设置过代理,此时可以执行以下命令:

lua 复制代码
git config --global http.proxy 127.0.0.1:7890
git config --global https.proxy 127.0.0.1:7890

此时再 push 代码到 github 就显得轻而易举了。

相关推荐
脆皮炸鸡75520 小时前
Linux开发工具~~~版本控制器Git以及调试工具GDB
linux·服务器·开发语言·经验分享·git·学习方法
起个名字总是说已存在21 小时前
github开源AI 拓展工具:Agent Reach
人工智能·github·dreamweaver
小雨青年1 天前
GitHub Copilot 默认启用训练之后 企业安全如何应对
安全·github·copilot
console.log('npc')1 天前
团队协作提交自己的功能
git
独隅1 天前
开源项目 Git 贡献全流程的完整拆解:从 Fork 到 PR
git·开源
攀登的牵牛花1 天前
2.1w Star 的 pretext 火在哪?
前端·github
糖猫猫_1 天前
Kite 实现逻辑删除
后端·github
一叶萩Charles1 天前
GitHub AI Agent 开源生态概览
人工智能·开源·github
___波子 Pro Max.1 天前
Git Rebase: HEAD~ 的简洁写法
git
bxri1 天前
团队协作中的 Git 工作流(企业级实战)
git·gitee·github