From aeca0e4c909da162b6d4de49a3cc18f6c8487b0b Mon Sep 17 00:00:00 2001 From: Pratik Raj Date: Thu, 28 May 2020 11:06:35 +0530 Subject: [PATCH] Issue-ID: PORTAL-913 optimization in git clone using --depth 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 is created at https://jira.onap.org/browse/PORTAL-913 More detail can be found at blog https://www.atlassian.com/git/tutorials/big-repositories Signed-off-by: Pratik Raj Change-Id: I79c7dfb928115ac438738b9bda1017dd6549560f --- deliveries/local-dev-host-clone.sh | 4 ++-- docs/tutorials/portal-BE/setting-up.rst | 2 +- docs/tutorials/portal-sdk/setting-up.rst | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/deliveries/local-dev-host-clone.sh b/deliveries/local-dev-host-clone.sh index 1d7ae42b..43153d38 100644 --- a/deliveries/local-dev-host-clone.sh +++ b/deliveries/local-dev-host-clone.sh @@ -2,6 +2,6 @@ # Sets up a new build area for Portal projects on on a dev/test host such as vm-ep-dev3 USER=org.UserId-goes-here -git clone https://${USER}@gerrit.onap.org/r/a/portal +git clone --depth 1 https://${USER}@gerrit.onap.org/r/a/portal cd lf_portal -git clone https://${USER}@gerrit.onap.org/r/a/portal/sdk +git clone --depth 1 https://${USER}@gerrit.onap.org/r/a/portal/sdk diff --git a/docs/tutorials/portal-BE/setting-up.rst b/docs/tutorials/portal-BE/setting-up.rst index 22d7f47b..36448999 100644 --- a/docs/tutorials/portal-BE/setting-up.rst +++ b/docs/tutorials/portal-BE/setting-up.rst @@ -18,7 +18,7 @@ Clone the Portal repository with git: :: - git clone "https://gerrit.onap.org/r/portal" + git clone --depth 1 "https://gerrit.onap.org/r/portal" Building ----------------- diff --git a/docs/tutorials/portal-sdk/setting-up.rst b/docs/tutorials/portal-sdk/setting-up.rst index ce32dbb4..ae03f1a9 100644 --- a/docs/tutorials/portal-sdk/setting-up.rst +++ b/docs/tutorials/portal-sdk/setting-up.rst @@ -18,7 +18,7 @@ Clone the Portal SDK repository with git: :: - git clone http://gerrit.onap.org/r/portal/sdk + git clone --depth 1 http://gerrit.onap.org/r/portal/sdk Building the base ----------------- -- 2.16.6