longjin 0a424c967e 自动初始化repo的脚本 | 11 mesiacov pred | |
---|---|---|
dragonos-manifest | 11 mesiacov pred | |
scripts | 11 mesiacov pred | |
LICENSE | 11 mesiacov pred | |
README.md | 11 mesiacov pred | |
default.xml | 11 mesiacov pred |
通过该仓库,使用repo工具管理其它仓库的源代码
sudo apt-get install git repo
echo "export REPO_URL='https://mirrors.tuna.tsinghua.edu.cn/git/git-repo'" >> ~/.$(basename $SHELL)rc
source ~/.$(basename $SHELL)rc
使用https克隆:
curl -sSL https://git.mirrors.dragonos.org.cn/DragonOS-Community/manifest/raw/master/scripts/init.sh | bash
使用ssh克隆(请先配置好github的SSH Key):
# 使用ssh克隆
bash <(curl -sSL https://git.mirrors.dragonos.org.cn/DragonOS-Community/manifest/raw/master/scripts/init.sh) --use-ssh-after-clone
# 新建文件夹
mkdir DragonOS-workspace
cd DragonOS-workspace
您可以选择从镜像站或者是GitHub同步代码,镜像站的速度更快,但是GitHub的代码库更加新。
# 【推荐】使用ssh克隆,可以使用下面的命令(请先配置好github的SSH Key)
repo init -u [email protected]:DragonOS-Community/manifest.git -b master
# 使用https克隆
repo init -u https://github.com/DragonOS-Community/manifest.git -b master
# 使用镜像站克隆
repo init -u https://git.mirrors.dragonos.org.cn/DragonOS-Community/manifest.git -b master
同步代码:
repo sync -c