一、安装git
個人ubuntu環境:ubuntu 20.4
按照平常途径安装git
sudo apt-get install git
二、安装repo
直接安装repo会出错:
$ sudo apt-get install repo
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package repo
ubuntu 20.04无法使用sudo apt-get install repo 命令直接安装。
可按如下步骤安装:
1、创建repo存放目录bin,并配置环境变量:
mkdir ~/bin
PATH=~/bin:$PATH
2、下载repo启动程序
curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
chmod a+x ~/bin/repo
3、运行repo
repo init -u ssh://xxxx你的库地址 --repo-url=https://mirrors.tuna.tsinghua.edu.cn/git/git-repo/
文章讲述了如何在Ubuntu20.04系统中安装Git和Repo。由于通过`sudoapt-getinstallrepo`无法直接安装Repo,因此提供了手动安装步骤:创建bin目录,设置环境变量,从特定URL下载repo脚本,赋予执行权限,并使用repo初始化仓库。
3811

被折叠的 条评论
为什么被折叠?



