From 882ed69dd1204f6ef38999ae787c46d8db81b7aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Mah=C3=A9?= Date: Tue, 21 Nov 2023 15:34:16 +0100 Subject: [PATCH] Update .gitmodules Use `https` rather than `git` protocol to avoid the following error when running `git clone --recursive`: ``` Submodule 'abPOA' (git@github.com:yangao07/abPOA.git) registered for path 'abPOA' Cloning into 'abPOA'... Permission denied (publickey). fatal: Could not read from remote repository. ``` --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index de9b860..5105608 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,4 +1,4 @@ [submodule "abPOA"] path = abPOA - url = git@github.com:yangao07/abPOA.git + url = https://github.com/yangao07/abPOA.git ignore = dirty