Issue-ID: APPC-1882 optimization in git clone using --depth 72/108372/3
authorPratik Raj <rajpratik71@gmail.com>
Thu, 28 May 2020 05:37:04 +0000 (11:07 +0530)
committerPratik raj <Rajpratik71@gmail.com>
Sat, 30 May 2020 07:52:51 +0000 (07:52 +0000)
optimize the git clone using --depth flag in term of size of clone
and also in term's of time taken to fetch the files and commit history
of whole repository .

Respective issue with Issue-ID: APPC-1882  is created at

https://jira.onap.org/browse/APPC-1882

More detail can be found at blog
https://www.atlassian.com/git/tutorials/big-repositories

Signed-off-by: Pratik Raj <rajpratik71@gmail.com>
Change-Id: Ic5e7169b23662f80f98e192355163159f42182b8

docs/APPC Deployment Guidelines/APPC Deployment Guidelines.rst
docs/APPC Testing of a Local ONAP Component/APPC Testing of a Local ONAP Component.rst

index 5679d1e..2d36875 100644 (file)
@@ -117,7 +117,7 @@ You can clone this repository to your docker host:
 
 .. code:: bash
 
-    git clone "https://gerrit.onap.org/r/appc/deployment"
+    git clone --depth 1 "https://gerrit.onap.org/r/appc/deployment"
 
 Downloading the APPC Docker Images
 ----------------------------------
index 0c08634..7fbaa65 100644 (file)
@@ -104,8 +104,8 @@ Setting up Git
 
    .. code:: bash
 
-       git clone http://<LF_USER_ID>@gerrit.onap.org/r/a/appc
-       git clone http://<LF_USER_ID>@gerrit.onap.org/r/a/appc/deployment
+       git clone --depth 1 http://<LF_USER_ID>@gerrit.onap.org/r/a/appc
+       git clone --depth 1 http://<LF_USER_ID>@gerrit.onap.org/r/a/appc/deployment
 
 Docker Engine Installation
 --------------------------