如果直连git遇到速度很慢,或者如果公司使用代理,git就需要设置代理才能克隆远程仓库
执行下面两条语句
git config --global http.proxy 10.167.32.133:8080
git config --global https.proxy 10.167.32.133:8080
如果需要用户名和密码
git config –global http.proxy http://user:password@10.167.32.133:8080
git config –global http.proxy https://user:password@10.167.32.133:8080
然后就可以使用
git clone http://github.com/videolan/vlc-3.0.git
# 或
git clone https://github.com/videolan/vlc-3.0.git
不能用
git clone git@github.com:videolan/vlc-3.0.git
git config --system (或 --global 或 --local) --unset http.proxy
git config --system (或 --global 或 --local) --unset https.proxy
如果使用Github推出的桌面程序GitHub Desktop,里面可能并没有代理设置的选项,不过这些客户端一般在底层都是调用的命令行工具,所以同样按照上述步骤进行设置即可。