当前位置:   article > 正文

git、npm配置http代理_git配置http访问

git配置http访问
  1. # git设置代理
  2. git config --global http.proxy http://127.0.0.1:10809
  3. git config --global https.proxy http://127.0.0.1:10809
  4. # git取消代理
  5. git config --global --unset http.proxy
  6. git config --global --unset https.proxy
  7. #npm设置代理
  8. npm config set proxy http://127.0.0.1:10809
  9. npm config set https-proxy http://127.0.0.1:10809
  10. #npm取消代理
  11. npm config delete proxy
  12. npm config delete https-proxy

其中10809端口是自己的代理服务的端口

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/482627
推荐阅读
相关标签
  

闽ICP备14008679号