From d2edb5569de384ff0625761178922f079ff5a2e3 Mon Sep 17 00:00:00 2001 From: MonogameGuy Date: Tue, 17 Dec 2024 08:46:41 -0500 Subject: [PATCH] =?UTF-8?q?Modify=20.gitmodules=20to=20use=20https=20for?= =?UTF-8?q?=20Templates=20to=20resolve=20permission=20i=E2=80=A6=20(#8598)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #8593 ### Description of Change Set the url protocol to `https` for consistency with all other entries and to correct permission errors on non-configured git clients: > fatal: clone of 'git@github.com:MonoGame/MonoGame.Templates.git' git@github.com: Permission denied (publickey). ``` [submodule "external/MonoGame.Templates"] path = external/MonoGame.Templates url = https://github.com/MonoGame/MonoGame.Templates.git ``` --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index 0120e6fc882..c0e9ab25431 100644 --- a/.gitmodules +++ b/.gitmodules @@ -24,4 +24,4 @@ url = https://github.com/LunarG/VulkanMemoryAllocator.git [submodule "external/MonoGame.Templates"] path = external/MonoGame.Templates - url = git@github.com:MonoGame/MonoGame.Templates.git + url = https://github.com/MonoGame/MonoGame.Templates.git