repo git 设置proxy

来源:互联网 发布:android多线程编程 编辑:程序博客网 时间:2024/06/05 02:36

repo设置proxy

export http_proxy=http://127.0.0.1:1080export https_proxy=https://127.0.0.1:1080

Git设置proxy

git config --global http.proxy http://127.0.0.1:1080git config --global https.proxy https://127.0.0.1:1080git config --global --unset http.proxygit config --global --unset https.proxy

这样就可以下载Google原汁原味的Android源码了。

原创粉丝点击