这样应该已经设置好了代理吧,为什么我在当前目录 git clone 的时候还是 10K/S 呢,
[有什么办法不用局部设置代理, global 中设置 github 走代理,其他直连的?]
1
bigtan 2015-12-20 22:06:10 +08:00
你 clone 的时候是走的 https 协议吗?也许是 git 协议
|
3
Daniel65536 2015-12-20 22:12:58 +08:00 via iPad
https 代理的意思是用来给 https 开头的连接用的代理,不是说代理地址的开头是 https ,所以你 127 前面那个 https 应当换成 http 。
然后 1080 看起来是 ss 提供的代理? ss 提供的代理是 socks5 的,你要装个 polipo 转换成 http 代理。 |
4
mikicomo OP @Daniel65536 呃呃,那个 127 前面的 https 的确是手滑了没注意,需要装个 polipo 才行?
|
5
hardware 2015-12-20 22:22:17 +08:00
proxychains-ng 解决
|
6
ryd994 2015-12-21 01:11:00 +08:00 via Android
@Daniel65536 socks5://127.0.0.1:1080 不行么?
|
7
Strikeactor 2015-12-21 01:15:25 +08:00
tsocks
|
8
mikicomo OP @Daniel65536
@Strikeactor @ryd994 @bigtan @hardware git config --local http.proxy 'socks5://127.0.0.1:1080' git config --local https.proxy 'socks5://127.0.0.1:1080' 已经成功了,查了下 Git 原生支持 socks5 协议的.....= = |