Skip to content

git github代理

Published: at 02:39 PM | 1 min read

家里电脑下载github代码太慢只有几KB,临时使用免费的蓝灯来下载。

open_github_proxy.sh

#!/bin/bash
git config --global http.https://github.com.proxy 127.0.0.1:50705
git config --global https.https://github.com.proxy 127.0.0.1:50705

close_github_proxy.sh

#!/bin/bash
git config --global --unset http.https://github.com.proxy
git config --global --unset https.https://github.com.proxy