From mboxrd@z Thu Jan 1 00:00:00 1970 From: dan at danweeks.net (Daniel M. Weeks) Date: Wed, 20 Sep 2017 11:17:29 -0400 Subject: [PATCH v2] Use https for submodule Message-ID: <20170920151721.GA19338@dev.danweeks.net> The git protocol provides no transport security. https does provide transport security and should be preferred by default. https is also more likely than git to be permitted by firewalls in restricted environments. Signed-off-by: Daniel M. Weeks --- Changes: * Added detailed commit message .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index 1daea94..5c6ecb4 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "git"] - url = git://git.kernel.org/pub/scm/git/git.git + url = https://git.kernel.org/pub/scm/git/git.git path = git -- Daniel M. Weeks