Git Proxy

当我在Linux下设置shadowsocket代理时,用Git进行联网操作时总提示没有设置正确的proxy。

解决方式为为Git设置全局代理,配置命令如下:

1
2
3
4
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 http.proxy 'socks5://127.0.0.1:1080'
git config --global https.proxy 'socks5://127.0.0.1:1080'

取消设置的命令好像如下,先记着:

1
2
3
git config --global --unset http.proxy
git config --global --unset https.proxy
npm config delete proxy

0%