banner
NEWS LETTER

Git配置本地代理

Scroll down

本文作者:丁辉

Git配置本地代理

本地启动代理后,使用命令更改端口

1
2
3
4
5
6
7
# socks5协议,1080端口修改成自己的本地代理端口
git config --global http.https://github.com.proxy socks5://127.0.0.1:1080
git config --global https.https://github.com.proxy socks5://127.0.0.1:1080

# http协议,1081端口修改成自己的本地代理端口
git config --global http.https://github.com.proxy https://127.0.0.1:1081
git config --global https.https://github.com.proxy https://127.0.0.1:1081
  • 查看所有配置

    1
    git config -l
  • 取消 reset 代理设置

    1
    2
    git config --global --unset http.proxy
    git config --global --unset https.proxy

I'm so cute. Please give me money.

其他文章
cover
Git清除提交记录
  • 70/01/01
  • 00:00
  • Linux-Git
cover
Shell脚本加密Shc
  • 70/01/01
  • 00:00
  • Linux-Shell
目录导航 置顶
  1. 1. Git配置本地代理
请输入关键词进行搜索