从GitHub clone代码速度比较慢,设置代理,(假设端口是1080):

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 --unset http.proxy
git config --global --unset https.proxy
npm config delete proxy
git config --global http.proxy 'socks5://127.0.0.1:1080'
git config --global https.proxy 'socks5://127.0.0.1:1080'

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-11-08
  • 2021-12-21
  • 2021-10-20
  • 2021-11-29
  • 2022-01-09
猜你喜欢
  • 2021-12-25
  • 2022-12-23
  • 2021-10-23
  • 2021-11-27
  • 2022-12-23
相关资源
相似解决方案