🏜️ [Git] 设置代理
开启系统代理

shellCopy
# 设置
git config --global http.proxy 'socks5://127.0.0.1:7890'
git config --global https.proxy 'socks5://127.0.0.1:7890'
# 恢复
git config --global --unset http.proxy
git config --global --unset https.proxy