From acbad52fc5094dbf05dcff55540a6858997b2d72 Mon Sep 17 00:00:00 2001 From: Liam White Date: Thu, 13 Nov 2025 11:50:53 -0500 Subject: [PATCH] fix: use HTTPS for Testing/Data submodule MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The nested submodule for test data currently uses git://git.code.sf.net/p/gdcm/gdcmdata (port 9418). Many corporate and CI environments block the git protocol, which causes recursive submodule fetches to hang or fail. Switching to HTTPS makes the fetch work reliably behind firewalls and within tools that disable the git protocol. - Update .gitmodules to use https://git.code.sf.net/p/gdcm/gdcmdata.git - Recommend `git submodule sync --recursive` for existing clones This change is read-only and does not affect code or tests—only how the public submodule is fetched. --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index 8170523af6..f3f8da8fdc 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "Testing/Data"] path = Testing/Data - url = git://git.code.sf.net/p/gdcm/gdcmdata + url = https://git.code.sf.net/p/gdcm/gdcmdata