git clone Google的代码失败的解决方法

时间:2021-03-31 06:35:15

  git clone Google的volley代码遇Q。

       想到用代理服务器就可以解决这个问题。Google了一下解决方法,记录下来,分享一下。

       git config:

                 git clone Google的代码失败的解决方法

        设置代理服务器:

git config --global http.proxy http://proxyuser:proxypwd@proxy.server.com:8080
git config --global https.proxy https://proxyuser:proxypwd@proxy.server.com:8080

       proxyuser:代理服务器用户

       proxypwd:密码

       proxy.server.com:代理服务器地址

       8080:代理服务器端口号

      重设代理,恢复默认:

  

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

    git clone Google的代码失败的解决方法