aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonas Bjurel <jonas.bjurel@ericsson.com>2016-05-31 18:57:24 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2016-05-31 18:57:24 +0000
commit9e30b6b481bb64ec06d1e36bf7852851ab10f8b3 (patch)
tree691dc6d33e7f091ff8a27843ffd8cd556aa0eb9a
parentad898b3e741cf2488d8e4d4c770c786eca4e2e47 (diff)
parent7f92a901efaaff2f5ecdb3c8505b7c123f1bb8ba (diff)
Merge "docs/build-instr: Fix git clone URL for HTTPS." into stable/brahmaputrastable/brahmaputra
-rw-r--r--docs/build-instruction.rst15
1 files changed, 11 insertions, 4 deletions
diff --git a/docs/build-instruction.rst b/docs/build-instruction.rst
index 2d66b7c00..380d28241 100644
--- a/docs/build-instruction.rst
+++ b/docs/build-instruction.rst
@@ -102,20 +102,27 @@ Clone the OPNFV code Git repository with your SSH key
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Now it is time to clone the code repository:
-$ git clone ssh://<Linux foundation user>@gerrit.opnfv.org:29418/fuel
+.. code-block:: bash
+
+ $ git clone ssh://<Linux foundation user>@gerrit.opnfv.org:29418/fuel
Now you should have the OPNFV fuel repository with the Fuel
directories stored locally on your build host.
Check out the Brahmaputra release:
-$ cd fuel
-$ git checkout brahmaputra.1.0
+
+.. code-block:: bash
+
+ $ cd fuel
+ $ git checkout brahmaputra.1.0
Clone the OPNFV code Git repository without a SSH key
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
You can also opt to clone the code repository without a SSH key:
-$ git clone https://gerrit.opnfv.org:29418/gerrit/fuel
+.. code-block:: bash
+
+ $ git clone https://gerrit.opnfv.org/gerrit/fuel
Make sure to checkout the release tag as described above.