knowledge_map/git设置代理.md
2021-02-09 10:30:36 +08:00

14 lines
288 B
Markdown

# git设置代理
* Windows下Clash设置代理
```sh
git config --global https.proxy http://127.0.0.1:7890
git config --global https.proxy https://127.0.0.1:7890
git config --global http.proxy 'socks5://127.0.0.1:7890'
git config --global https.proxy 'socks5://127.0.0.1:7890'
```