From 436e571e6e5aa1123d090c52012676a68968b191 Mon Sep 17 00:00:00 2001 From: jsseidel Date: Tue, 19 Sep 2017 16:51:26 -0400 Subject: Updated submodule section with new instructions After trying the instructions in the submodule section, I discovered there were a couple of steps missing, namely replacing origin with gerrit and telling git-review what the gerrit instances for the submodules are. Change-Id: Ide084200ebcd84d838dabbf352466ec3ca032409 Issue-Id: DOC-84 Signed-off-by: jsseidel --- .../onap-developer/how-to-use-docs/update-review.rst | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'docs') diff --git a/docs/guides/onap-developer/how-to-use-docs/update-review.rst b/docs/guides/onap-developer/how-to-use-docs/update-review.rst index 033f2f085..7a0cd39dc 100644 --- a/docs/guides/onap-developer/how-to-use-docs/update-review.rst +++ b/docs/guides/onap-developer/how-to-use-docs/update-review.rst @@ -90,6 +90,26 @@ submodules. To pull in the latest changes: git submodule foreach 'git pull' +Next, for every submodule, you'll need to rename 'origin' to 'gerrit': + +.. code:: bash + + git submodule foreach 'git remote rename origin gerrit' + +Finally, for every submodule, you'll have to tell git-review how to find +Gerrit. + +.. code:: bash + + cd doc # Make sure we're in the top level doc repo directory + git submodule foreach 'REPO=$(echo $path | sed "s/docs\/submodules\///") ; git remote add gerrit ssh://@gerrit.onap.org:29418/$REPO' + +Or, if you prefer to do only one at a time: + +.. code:: bash + + git remote add gerrit ssh://@gerrit.onap.org:29418/repopath/repo.git + Requesting Reviews ------------------ -- cgit 1.2.3-korg