git配置临时代理

Published on Aug. 22, 2023, 12:08 p.m.

git配置临时代理,简单有效的方案。

命令如下:

ALL_PROXY=socks5://127.0.0.1:39509 git clone https://github.com/naler/perorch

来源
https://stackoverflow.com/questions/15227130/using-a-socks-proxy-with-git-for-the-http-transport

git config --global http.proxy socks5h://127.0.0.1:1080

如果要长久使用还是改配置文件来得简单。

/home/user/.gitconfig

Tags: