笔记——在Linux中repo 出现Cannot get https://gerrit.googlesource.com/git-repo/clone.bundle的解决方法

首先我是这样下载repo的

sudo apt-get install repo

然后新创建了一个文件夹,在里面repo init
然后就报错了

在这里插入图片描述
然后就上网查了一遍才发现要替换成清华源。

然后就一路

cd …/
ls -a

这样下去然后就发现了一个叫bin的文件夹里
当然聪明的小伙子就会说

cd /bin

这样不就可以了吗?
哦哦哦哦哦哦

然后就使用文本编辑器

sudo gedit repo
把里面的
REPO_URL = ‘https://gerrit.googlesource.com/git-repo’
修改成
REPO_URL = ‘https://mirrors.tuna.tsinghua.edu.cn/git/git-repo/’

之后就行了

你可能感兴趣的:(笔记,linux,git,ubuntu)