AI编程生活评测

从GitHub仓库git clone时直接使用代理加速

编程笔记 / 2023-09-27 / 1 min

从github上克隆一个大项目的时候,如果不适用代理,可能只有几十K的速度,非常绝望,可以在git clone时直接使用代理:

git clone -c https.proxy="127.0.0.1:10809" https://github.com/test/Fast.git

加速后效果:

git clone时使用代理

其中 10809 是你本地代理的端口号。

点击刷新