首页 > 学院 > 操作系统 > 正文

Git 修改 proxy,解决代理导致的代码无法 push 或 pull 的问题

2024-06-28 16:01:06
字体:
来源:转载
供稿:网友

事由: 更新 git@osc 代码时,执行 git pull 响应一段时间后输出 socket5 read timeout

解决方案:修改 git 的代理设置,这里是去掉了代理部分

关于 git 设置代理的方法:

// 查看当前代理设置git config --global http.PRoxygit config --global https.proxy// 设置当前代理为 http://127.0.0.1:1080 或 socket5://127.0.0.1:1080git config --global http.proxy 'http://127.0.0.1:1080'git config --global https.proxy 'http://127.0.0.1:1080'git config --global http.proxy 'socks5://127.0.0.1:1080'git config --global https.proxy 'socks5://127.0.0.1:1080'// 删除 proxygit config --global --unset http.proxygit config --global --unset https.proxy
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表