当前位置:   article > 正文

git 配置本地代理_git cone使用本地代理

git cone使用本地代理

1. 设置scoks代理

全局配置代理

  1. git config --global http.proxy socks5://127.0.0.1:10808
  2. git config --global https.proxy socks5://127.0.0.1:10808

当前项目文件夹内

  1. git config --local http.proxy socks5://127.0.0.1:10808
  2. git config --local https.proxy socks5://127.0.0.1:10808

2.设置http代理

  1. git config --global http.proxy http://127.0.0.1:1081
  2. git config --global https.proxy https://127.0.0.1:1081

当前项目文件夹内

  1. git config --local http.proxy http://127.0.0.1:1081
  2. git config --local https.proxy https://127.0.0.1:1081

取消代理设置

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

修改 config 文件(推荐)

打开目录下 .git 文件夹

找到 config文件

在后面添加两行

  1. [http]
  2. proxy = socks5://127.0.0.1:10808
  3. [https]
  4. proxy = socks5://127.0.0.1:10808

同理,清除代理就是把这两行删掉

全局配置的设置 在 用户文件夹下(C:\Users\yourname) .gitconfig 文件中

本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号