summaryrefslogtreecommitdiffstats
path: root/docs/guides/onap-developer/how-to-use-docs
diff options
context:
space:
mode:
authorjsseidel <spence@research.att.com>2017-09-19 16:51:26 -0400
committerRich Bennett <rb2745@att.com>2017-09-20 15:12:10 +0000
commit436e571e6e5aa1123d090c52012676a68968b191 (patch)
treea784164f4a0069f7fdb71245c45ca0d70329a3c7 /docs/guides/onap-developer/how-to-use-docs
parenta83d8a07e86dd09cc5e35533d921fb6adf355365 (diff)
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 <spence@research.att.com>
Diffstat (limited to 'docs/guides/onap-developer/how-to-use-docs')
-rw-r--r--docs/guides/onap-developer/how-to-use-docs/update-review.rst20
1 files changed, 20 insertions, 0 deletions
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://<LFID>@gerrit.onap.org:29418/$REPO'
+
+Or, if you prefer to do only one at a time:
+
+.. code:: bash
+
+ git remote add gerrit ssh://<LFID>@gerrit.onap.org:29418/repopath/repo.git
+
Requesting Reviews
------------------