clone.sh: remove clone parameters on git-clone command

The removal allows git to clone and checkout the master branch with
full repository history, which is then used for diffing changes
between user and master branches, allowing static checks to run as
expected.

Fixes [1]

[1] https://linaro.atlassian.net/browse/TFC-177

Signed-off-by: Leonardo Sandoval <leonardo.sandoval@linaro.org>
Change-Id: I0bc34490818dd548e7d4694730151ff90dfc0c94
diff --git a/scripts/clone.sh b/scripts/clone.sh
index 6c88552..2656eed 100755
--- a/scripts/clone.sh
+++ b/scripts/clone.sh
@@ -31,7 +31,7 @@
 REFSPEC_MASTER="refs/heads/master"
 GIT_REPO="https://git.trustedfirmware.org"
 GERRIT_HOST="https://review.trustedfirmware.org"
-GIT_CLONE_PARAMS="--depth=1 --no-checkout --no-tags"
+GIT_CLONE_PARAMS=""
 
 # Defaults Projects
 TF_GERRIT_PROJECT="${GERRIT_HOST}/${TF_GERRIT_PROJECT:-TF-A/trusted-firmware-a}"