学无止境

少年辛苦终身事,莫向光阴惰寸功。——唐·杜荀鹤《题弟侄书堂》


Git加速

全局代理,写入配置

git config --global http.proxy 'socks5://127.0.0.1:1080'
git config --global https.proxy 'socks5://127.0.0.1:1080'

清除配置

git config --global --unset http.proxy
git config --global --unset https.proxy

临时代理

ALL_PROXY=socks5://127.0.0.1:1080 git clone xxx