Reference included plugins by absolute Urls
While the use of relative Urls for referencing included plugin
repositories works nicely when cloning directly from gerrit-review, it
caused problems when cloning from a mirror that only mirrored the main
gerrit repository. There 'git submodule update' did not work unless
the referenced plugin repositories were also mirrored in exactly the
same relative position as on gerrit-review. Hence, we switch to
referencing the included plugin repositories by absolute Urls.
Change-Id: I1230f398cc7d2323922aff7f7acf92eac30f3ab5
diff --git a/.gitmodules b/.gitmodules
index 32483d6..0f7fdab 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,11 +1,11 @@
[submodule "plugins/replication"]
path = plugins/replication
- url = ../plugins/replication
+ url = https://gerrit.googlesource.com/plugins/replication
[submodule "plugins/reviewnotes"]
path = plugins/reviewnotes
- url = ../plugins/reviewnotes
+ url = https://gerrit.googlesource.com/plugins/reviewnotes
[submodule "plugins/commit-message-length-validator"]
path = plugins/commit-message-length-validator
- url = ../plugins/commit-message-length-validator
+ url = https://gerrit.googlesource.com/plugins/commit-message-length-validator