From 0dfe5cf88118265ab5913cde00efa8a76928ffad Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Tue, 19 Jan 2021 13:09:23 +0000 Subject: [PATCH] gitmodules: Consistently remove trailing slash The forms with or without a trailing slash are interchangeable via https, but the form with a trailing slash doesn't work if you have git configured to always access Github repositories via ssh, using something like: git config --global url."git+ssh://git@github.com/".insteadOf "https://github.com/" Signed-off-by: Simon McVittie --- .gitmodules | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitmodules b/.gitmodules index 41e09459..99e40643 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,9 +1,9 @@ [submodule "wine"] path = wine - url = https://github.com/ValveSoftware/wine/ + url = https://github.com/ValveSoftware/wine [submodule "dxvk"] path = dxvk - url = https://github.com/ValveSoftware/dxvk/ + url = https://github.com/ValveSoftware/dxvk [submodule "openvr"] path = openvr url = https://github.com/ValveSoftware/openvr @@ -12,7 +12,7 @@ url = https://github.com/liberationfonts/liberation-fonts [submodule "FAudio"] path = FAudio - url = https://github.com/FNA-XNA/FAudio/ + url = https://github.com/FNA-XNA/FAudio [submodule "gstreamer"] path = gstreamer url = https://gitlab.freedesktop.org/gstreamer/gstreamer.git