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
.. 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
----------------------------------
.. 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
--------------------------