gclient config https://chromium.googlesource.com/v8/v8

chromium 代理完美解决办法

#git的代理设置

git config --global http.proxy http://127.0.0.1:1081

git config --global https.proxy https://127.0.0.1:1081

#winhttp的代理设置

netsh winhttp set proxy 127.0.0.1:1081

#cipd_client项目来源与https://github.com/luci/luci-go/tree/master/cipd/client/cipd

使用的是golong的net/http库访问http/https,可通过环境变量设置代理

set HTTP_PROXY=http://127.0.0.1:1081
set HTTPS_PROXY=https://127.0.0.1:1081

相关文章:

  • 2022-02-08
  • 2021-05-06
  • 2021-08-11
  • 2022-01-17
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-06
猜你喜欢
  • 2022-12-23
  • 2022-01-07
  • 2021-08-23
  • 2022-12-23
  • 2021-10-09
  • 2021-05-27
  • 2021-12-29
相关资源
相似解决方案