赞
踩
例如:要从github上克隆一个项目到本地linux时,由于各种网络问题导致速度慢、连接失败等
通过配置git config来解决,替换github的域名为镜像地址。
git config --global url."https://hub.nuaa.cf/".insteadOf https://github.com/
或者编辑.gitconfig文件
gedit ~/.gitconfig
添加以下配置项
[url "https://hub.nuaa.cf/"]
insteadOf = https://github.com/
通过以上两种方式解决clone出现的各种网络问题。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。