GIT透过代理下载

如何通过代理clone GIT的代码

如果clone出现错误,
D:\workspace>git clone git://git.openwrt.org/openwrt.git
Cloning into 'openwrt'...
fatal: unable to connect to git.openwrt.org:
git.openwrt.org[0: 217.115.15.20]: errno=No error

如果你所在的网络需要代理访问网络,那你可以设置git代理服务器
git config --global http.proxy http://10.41.255.xxx:8080

git clone http://git.openwrt.org/openwrt.git

注意前缀要修改为HTTP(原来是GIT)

猜你喜欢

转载自mailheqiang.iteye.com/blog/1988164