📦 归档笔记 — 原创建于 WizNote,仅作归档展示;观点以当年为准,非最新。

git 配置代理

创建时间2021-04-13最后修改2021-04-15原位置/程序员成长之旅/Linux学习/字数76
目录:程序员成长之旅/Linux学习

git config --global https.proxy http://127.0.0.1:1080 git config --global https.proxy https://127.0.0.1:1080 git config --global --unset http.proxy git config --global --unset https.proxy

x

1 git config --global https.proxy http://127.0.0.1:1080 2 3 git config --global https.proxy https://127.0.0.1:1080 4 5 git config --global

--unset http.proxy 6 7 git config --global

--unset https.proxy