From 1d15b96455922ee2b7538fa3b57f1d535a2c1945 Mon Sep 17 00:00:00 2001 From: benb365 Date: Sat, 3 Jul 2021 12:29:10 +0000 Subject: [PATCH] fix repo init command. --- zh-cn/release-notes/OpenHarmony-2-0-Canary.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zh-cn/release-notes/OpenHarmony-2-0-Canary.md b/zh-cn/release-notes/OpenHarmony-2-0-Canary.md index 7d7540ba8c9..78498d686f4 100644 --- a/zh-cn/release-notes/OpenHarmony-2-0-Canary.md +++ b/zh-cn/release-notes/OpenHarmony-2-0-Canary.md @@ -60,7 +60,7 @@ 通过repo + ssh 下载(需注册公钥,请参考[码云帮助中心](https://gitee.com/help/articles/4191))。 ```sh -repo init -u git@gitee.com:openharmony/manifest.git -b -b refs/tags/OpenHarmony-2.0-Canary --no-repo-verify +repo init -u git@gitee.com:openharmony/manifest.git -b refs/tags/OpenHarmony-2.0-Canary --no-repo-verify repo sync -c repo forall -c 'git lfs pull' ``` @@ -70,7 +70,7 @@ repo forall -c 'git lfs pull' 通过repo + https 下载。 ```sh -repo init -u https://gitee.com/openharmony/manifest.git -b -b refs/tags/OpenHarmony-2.0-Canary --no-repo-verify +repo init -u https://gitee.com/openharmony/manifest.git -b refs/tags/OpenHarmony-2.0-Canary --no-repo-verify repo sync -c repo forall -c 'git lfs pull' ``` -- Gitee