-
-
Notifications
You must be signed in to change notification settings - Fork 11
Closed
Description
I ran into following issue when try update submodules
$ git clone https://github.com/marten-seemann/qpack
$ cd qpack
$ git submodule update --init --recursive
Submodule 'integrationtests/interop/qifs' (git@github.com:qpackers/qifs.git) registered for path 'integrationtests/interop/qifs'
Cloning into 'integrationtests/interop/qifs'...
Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
Clone of 'git@github.com:qpackers/qifs.git' into submodule path 'integrationtests/interop/qifs' failedAnd I found use https scheme could cure this problem.
diff --git a/.gitmodules b/.gitmodules
index 10a7000..5ac16f0 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,3 +1,3 @@
[submodule "integrationtests/interop/qifs"]
path = integrationtests/interop/qifs
- url = git@github.com:qpackers/qifs.git
+ url = https://github.com/qpackers/qifs.gitSo Is reasonable apply this change?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels