diff options
author | Jonas Bjurel <jonas.bjurel@ericsson.com> | 2016-05-12 12:44:06 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-05-12 12:44:07 +0000 |
commit | 4e30239dcf00738320134cb1a64851f167a77c7b (patch) | |
tree | 0e7a28511b14d8ae970f3b596b3688984589cd45 | |
parent | 271dc336e71086af7f14a9585af71bb261557035 (diff) | |
parent | 00350c889605e1f134a35d114ba07cd7fb2b4db4 (diff) |
Merge "docs/build-instr: Fix git clone URL for HTTPS."
-rw-r--r-- | docs/build-instruction.rst | 15 |
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. |