问题一般情况是因为代理问题,npm代理和git代理都要设置。首先确认网络是否需要设置代理。
npm config delete proxy
npm config delete https-proxy
去掉git代理
git config --global --unset http.proxy
git config --global --unset https.proxy
发布于 2024-08-03 159 次阅读
问题一般情况是因为代理问题,npm代理和git代理都要设置。首先确认网络是否需要设置代理。
npm config delete proxy
npm config delete https-proxy
去掉git代理
git config --global --unset http.proxy
git config --global --unset https.proxy
Comments NOTHING