githubusercontent 加速 代理
#githubusercontent 加速 代理
范例: https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.2/install.sh
替换为 https://raw.gitmirror.com/nvm-sh/nvm/v0.39.2/install.sh
是的,很多时候不是 GitHub 慢,而是 CMD/PowerShell 没走代理。
export http_proxy=http://127.0.0.1:7890
export https_proxy=http://127.0.0.1:7890
或者git单独设置proxy
git config --global http.proxy http://127.0.0.1:7897
git config --global https.proxy http://127.0.0.1:7897