From a993a1e680dff25b8fcfa34f35ed28cbd6a87963 Mon Sep 17 00:00:00 2001 From: Pete Brubaker Date: Mon, 27 Mar 2023 23:45:58 -0700 Subject: [PATCH] Change .gitmodules to use https links Use https links for submodules rather than requiring a public key for git@github.com. --- .gitmodules | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitmodules b/.gitmodules index 29892df..cf4d4f6 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,18 +1,18 @@ [submodule "test/packages/EAMain"] path = test/packages/EAMain - url = git@github.com:electronicarts/EAMain.git + url = https://github.com/electronicarts/EAMain.git [submodule "test/packages/EATest"] path = test/packages/EATest - url = git@github.com:electronicarts/EATest.git + url = https://github.com/electronicarts/EATest.git [submodule "test/packages/EAAssert"] path = test/packages/EAAssert - url = git@github.com:electronicarts/EAAssert.git + url = https://github.com/electronicarts/EAAssert.git [submodule "test/packages/EAThread"] path = test/packages/EAThread - url = git@github.com:electronicarts/EAThread.git + url = https://github.com/electronicarts/EAThread.git [submodule "test/packages/EASTL"] path = test/packages/EASTL - url = git@github.com:electronicarts/EASTL.git + url = https://github.com/electronicarts/EASTL.git [submodule "test/packages/EABase"] path = test/packages/EABase - url = git@github.com:electronicarts/EABase.git + url = https://github.com/electronicarts/EABase.git