下面3个是3种方式,不是步骤123.

1,vscode

设置里面搜索proxy

http里面输入 http://127.0.0.1:10809

2,git软件

git config --global --edit

文本内输入

[http]
    proxy = http://127.0.0.1:10809
[https]
    proxy = http://127.0.0.1:10809
[credential]
    helper = store

3,git命令

git config --global http.proxy 'http://127.0.0.1:10809'

git config --global https.proxy 'http://127.0.0.1:10809'