问题描述:
近期国内Github Raw的可用IP越来越少,直接clone可能存在超时等问题。
git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
解决方案:
不需要科()学()上网,也不需要开代理加速器。
方法1
网站https://ghproxy.com/支持github的资源代理,因此可以用此代理加速rosdep对github raw的访问。
url="https://ghproxy.com/"+url
以下载stable-diffusion-webui为例子
#原始:
git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
#修改后:
git clone https://ghproxy.com/https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
方法2(推荐)
长期修改,编辑~/.gitconfig文件。
vim ~/.gitconfig
在.gitconfig文件中,添加如下代码
[url "https://ghproxy.com/https://github.com/"]
insteadOf = https://github.com/
以上两种方法,基本可以解决git clone访问失败的问题