使用 Git 代理来解决 GitHub git 443: Timed out的报错

由于 GitHub 目前在国内半墙不墙的状态,我们在从 GitHub 上 push 或者 pull 都很容易卡住甚至出现 git 443: Timed out的报错。报错如下 Failed to connect to github.com port 443: Timed out

下面就是使用代理来解决这个问题, 前提是本地已经开启代理
查看本地代理
查看本地代理

//  为全局的 git 项目都设置代理
git config --global http.proxy 127.0.0.1:7890

// 为某个 git 项目单独设置代理
git config --local http.proxy 127.0.0.1:7890

取消全局代理

git config --global --unset http.proxy
git config --global --unset https.proxy

看当前用户(global)配置的命令:

git config --global  --list
posted @ 2022-11-16 00:10  今天代码写完了吗  阅读(655)  评论(0编辑  收藏  举报