From: Martin Liska Date: Tue, 15 Nov 2022 13:18:27 +0000 (+0100) Subject: libsanitizer: use git clone --depth 1 X-Git-Tag: basepoints/gcc-14~3149 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3895318beb8f21965c398c6b89ce6d542bda0aed;p=thirdparty%2Fgcc.git libsanitizer: use git clone --depth 1 Using depth == 1 it makes the cloning much faster. libsanitizer/ChangeLog: * merge.sh: Use git clone --depth 1. --- diff --git a/libsanitizer/merge.sh b/libsanitizer/merge.sh index 95ded4f96344..7d1b553e2bb7 100755 --- a/libsanitizer/merge.sh +++ b/libsanitizer/merge.sh @@ -6,7 +6,7 @@ get_upstream() { rm -rf upstream - git clone https://github.com/llvm/llvm-project.git upstream + git clone --depth 1 https://github.com/llvm/llvm-project.git upstream } get_current_rev() {