怎么在 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 就显得轻而易举了。

相关推荐
Jiude11 分钟前
AI 写代码太快之后,团队协作反而更难了
人工智能·架构·github
Ws_2 小时前
Git + Gerrit 第二课:diff、暂存区与撤销修改
git
snowjlz3 小时前
鸿蒙版SVN来了!!!
git·svn·版本控制
2401_876964134 小时前
27考研余炳森概率论|喻老李良2027资料网课
windows·git·考研·svn·eclipse·github·概率论
AhriProGramming5 小时前
GitHub开源项目推荐-1:pyd_packer
github
爱搬砖的狮子5 小时前
【Git】git repo下载使用
git
独自归家的兔6 小时前
AI界的 GitHub?Hugging Face 全面解析
人工智能·github
逛逛GitHub8 小时前
GitHub 上刚开源的国产 3D 高斯浏览器,杭州六小龙给力啊。
github
cheems95278 小时前
Git基本操作
git
Irissgwe9 小时前
三、Git 文件状态管理:add、commit、status 和 diff
git