目录

Linux终端git无法联网

问题描述

电脑使用了clash代理工具,配好环境之后浏览器可以访问谷歌github,但是终端无法推送代码到github

解决方法

打开终端执行如下命令:

1
2
3
4
5
6
git config --global http.proxy 'sockets5://127.0.0.1:7891'
git config --global https.proxy 'sockets5://127.0.0.1:7891'

# 或者
git config --global http.proxy 'http://127.0.0.1:7890'
git config --global https.proxy 'https://127.0.0.1:7890'

具体看使用啥代理方式