From fca52b7914e082c865a61e417ae7c6fc4df4625f Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Wed, 2 Nov 2022 16:48:13 +0000 Subject: [PATCH] ci: Update git paths to reflect new GitLab URI The GitLab instance has been moved around, so the SSH clone URI for repositories has changed. Change that in `CONTRIBUTING.md`, and also change to using a relative path in `.gitmodules` to insulate from similar URI changes in future. Changing to a relative path in `.gitmodules` also enables the CI to use submodules more easily: https://docs.gitlab.com/ee/ci/git_submodules.html Signed-off-by: Philip Withnall --- .gitmodules | 2 +- CONTRIBUTING.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitmodules b/.gitmodules index c1f97ee42..749950b93 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,5 +1,5 @@ [submodule "subprojects/gvdb"] path = subprojects/gvdb - url = https://gitlab.gnome.org/GNOME/gvdb.git + url = ../../GNOME/gvdb.git branch = 0854af0fdb6d527a8d1999835ac2c5059976c210 shallow = true diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9f2cdc984..efeea85c2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -137,7 +137,7 @@ $ cd glib have a GNOME account, you can skip the fork, and use the following instead: ```sh -$ git clone git@gitlab.gnome.org:GNOME/glib.git +$ git clone git@ssh.gitlab.gnome.org:GNOME/glib.git $ cd glib ```