From c634a533023fd0b2d691d420d7d2fbb648a1ad93 Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Mon, 4 Jul 2022 18:06:43 +0100 Subject: [PATCH] gitmodules: prefer https over ssh for submodules This should make it easier to init submodules even when the current key has not been enabled in Github. It should still be easy to switch to ssh when actual changes to repos are needed. --- .gitmodules | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitmodules b/.gitmodules index f09b780..f28203f 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,6 @@ [submodule "awesome/widgets/net_widgets"] path = awesome/widgets/net_widgets - url = git@github.com:Ram-Z/net_widgets.git + url = https://github.com/Ram-Z/net_widgets.git [submodule "zsh/lib/zsh-syntax-highlighting"] path = zsh/lib/zsh-syntax-highlighting url = https://github.com/zsh-users/zsh-syntax-highlighting @@ -18,7 +18,7 @@ url = https://github.com/torhve/weechat-matrix-protocol-script [submodule "awesome/widgets/pomodoro"] path = awesome/widgets/pomodoro - url = git@github.com:ram-z/awesome-pomodoro + url = https://github.com/ram-z/awesome-pomodoro [submodule "urxvt/font-size"] path = urxvt/font-size url = https://github.com/majutsushi/urxvt-font-size -- 2.48.1