2.设置代理加速
2024年7月1日小于 1 分钟约 171 字...
2.设置代理加速
系统代理设置
参考文档
科学上网与本地代理教程
ssh 协议代理
如下面这种指令
git clone git@github.com:handy-golang/go-tools.git
这里是使用 ssh 协议进行 远程仓库访问的,这个时候 是不走 http 代理的
可以通过 ssh 跳板机 完成代理。
参考文档:
ssh 跳板机
仅仅只是添加局部代理
git config --global http.proxy 'http://127.0.0.1:10809'
git config --global https.proxy 'http://127.0.0.1:10809'
## 只代理 github
git config --global 'http.https://github.com.proxy' 'http://127.0.0.1:10809'
git config --global 'https.https://github.com.proxy' 'http://127.0.0.1:10809'
##取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
你认为这篇文章怎么样?
- 0
- 0
- 0
- 0
- 0
- 0