【debug】 服务器如何给git 设置代理

服务器如何给git 设置代理

假设我们的代理是192.168.0.1:10000, 通过一下步骤设置代理

  1. Clear old settings:
    git config --global --unset https.proxy
    git config --global --unset http.proxy

  2. Set new settings:
    git config --global https.proxy http://1192.168.0.1:1000

    git config --global http.proxy http://192.168.0.1:10000

  3. Verify new settings:
    git config --get https.proxy
    git config --get http.proxy

这时候试着clone repo 如果还是不行的话, 加下面这条指令

git config --global http.sslVerify false

你可能感兴趣的:(知识分享,bug,git,服务器,github,bug,人工智能)