加速github仓库下载及相关

git代理

这里指的是https协议,也就是 git clone https://www.github.com/xxxx/xxxx.git 这种。
对于SSH协议,也就是 git clone [email protected]:xxxxxx/xxxxxx.git 这种,依旧是无效的。

设置
git config --global http.https://github.com.proxy socks5://127.0.0.1:1080
git config --global https.https://github.com.proxy socks5://127.0.0.1:1080

取消代理
git config --global --unset https.https://github.com.proxy
git config --global --unset http.https://github.com.proxy

下载代理

使用vultr上服务器下载后拿到本地:

连接
sftp [email protected]

上传
put new.txt /work/ 将new.txt上传服务器
下载
get /work/new.txt 
get new.txt /work 下载至本地

你可能感兴趣的:(加速github仓库下载及相关)