在某些公司内,应 IT 安全政策要求,可能需要设置代理才能访问互联网。相应地,一些工具/软件也需要设置代理才能正常运行。
设置当前用户网络代理
1 2
| set http_proxy=http://[username:password@]proxyserver:port set https_proxy=https://[username:password@]proxyserver:port
|
设置 Git 代理:
1
| git config --global http.proxy http://xxx.xxx.xxx.xxx:80
|
移除 Git 代理:
1
| git config --global --unset http.proxy
|
设置 npm 代理
1 2
| npm config set proxy http://xxx.xxx.xxx.xxx:8080 npm config set https-proxy http://xxx.xxx.xxx.xxx:8080
|
移除 npm 代理
1 2
| npm config rm proxy npm config rm https-proxy
|
更多常用代理命令,请移步各搜索引擎或 Stackoverflow。
参考链接
本文链接:
content_copy
https://zxs66.github.io/2020/07/01/proxy-for-git-and-npm-in-intranet-network/