From 9f68def5f58b17417847477a462cfd254fd89588 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bernhard=20Rosenkr=C3=A4nzer?= <bernhard.rosenkraenzer.ext@huawei.com> Date: Mon, 8 Feb 2021 22:12:31 +0000 Subject: [PATCH] Fix instructions for checking out ohos repositories MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit repo defaults to checking out the "master" branch, but manifest.git doesn't have one - it uses a "develop" branch instead. Signed-off-by: Bernhard Rosenkränzer <bernhard.rosenkraenzer.ext@huawei.com> --- documentation/source/quick-start/build-open-harmony.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/source/quick-start/build-open-harmony.rst b/documentation/source/quick-start/build-open-harmony.rst index 11b9527..06927d5 100644 --- a/documentation/source/quick-start/build-open-harmony.rst +++ b/documentation/source/quick-start/build-open-harmony.rst @@ -33,7 +33,7 @@ Once git repo has been installed as mentioned in prerequisite, clone the necessa .. code-block:: console $ mkdir ohos; cd ohos - $ repo init -u https://git.ostc-eu.org/OSTC/manifest.git + $ repo init -u https://git.ostc-eu.org/OSTC/manifest.git -b develop $ repo sync Above commands creates the following directory structure: -- GitLab