fast github

git clone https://ghproxy.com/https://github.com/ldqk/new-pac.git

  

git config --global url."https://hub.fastgit.xyz/".insteadOf https://github.com/

  

查看代理
git config --global http.proxy

删除代理
git config --global --unset http.proxy
git config --global --unset https.proxy

取消curl代理
unset http_proxy
unset https_proxy


设置代理
git config --global url."https://hub.fastgit.xyz/".insteadOf https://github.com/

git config --global http.sslverify false
git config --global https.sslverify false


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

  

posted @ 2022-09-04 20:07  dyling  阅读(323)  评论(0)    收藏  举报