diff options
author | Philip Withnall <pwithnall@endlessos.org> | 2022-11-02 16:48:13 +0000 |
---|---|---|
committer | Philip Withnall <pwithnall@endlessos.org> | 2022-11-02 16:49:51 +0000 |
commit | fca52b7914e082c865a61e417ae7c6fc4df4625f (patch) | |
tree | 542b535d07c1f1113a45fced798d7f9ffc90c5d7 | |
parent | ea0e9bf1f1812c58032069bec4acec88cc2086ff (diff) | |
download | glib-fca52b7914e082c865a61e417ae7c6fc4df4625f.tar.gz |
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 <pwithnall@endlessos.org>
-rw-r--r-- | .gitmodules | 2 | ||||
-rw-r--r-- | 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 ``` |