From e99938d110de2f5c94708bc9beca2043ed59a17f Mon Sep 17 00:00:00 2001 From: commitay Date: Sun, 17 Jun 2018 23:21:49 +1000 Subject: [PATCH] sync_templates_and_ci: git clone depth=1 (#48563) --- developer/bin/sync_templates_and_ci | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developer/bin/sync_templates_and_ci b/developer/bin/sync_templates_and_ci index 628c365fe9e..67e8a6742c9 100755 --- a/developer/bin/sync_templates_and_ci +++ b/developer/bin/sync_templates_and_ci @@ -23,7 +23,7 @@ function get_repo { cd "${repos_dir}" || exit 1 message "Cloning ${repo_name}…" - git clone "${homebrew_online}/${repo_name}.git" --quiet + git clone "${homebrew_online}/${repo_name}.git" --quiet --depth=1 cd "${repo_dir}" || exit 1 }