From 7152893618e129758205ee5c65477eaf95d74750 Mon Sep 17 00:00:00 2001 From: Kent Dong Date: Mon, 26 Aug 2024 20:31:23 +0800 Subject: [PATCH] fix: Use shallow mode when cloning submodules (#1253) --- .gitmodules | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.gitmodules b/.gitmodules index 3c8a0872f..5ba9f2280 100644 --- a/.gitmodules +++ b/.gitmodules @@ -2,27 +2,34 @@ path = istio/api url = https://github.com/higress-group/api branch = istio-1.19 + shallow = true [submodule "istio/istio"] path = istio/istio url = https://github.com/higress-group/istio branch = istio-1.19 + shallow = true [submodule "istio/client-go"] path = istio/client-go url = https://github.com/higress-group/client-go branch = istio-1.19 + shallow = true [submodule "istio/pkg"] path = istio/pkg url = https://github.com/higress-group/pkg branch = istio-1.19 + shallow = true [submodule "istio/proxy"] path = istio/proxy url = https://github.com/higress-group/proxy - branch = istio-1.19 + branch = istio-1.19 + shallow = true [submodule "envoy/go-control-plane"] path = envoy/go-control-plane url = https://github.com/higress-group/go-control-plane - branch = istio-1.19 + branch = istio-1.19 + shallow = true [submodule "envoy/envoy"] path = envoy/envoy url = https://github.com/higress-group/envoy - branch = envoy-1.27 \ No newline at end of file + branch = envoy-1.27 + shallow = true