From: Peter Eisentraut Date: Fri, 8 Apr 2022 13:27:54 +0000 (+0200) Subject: Change Git repo URLs from git: to https: X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=ec7e7c87477d677ebe2bb7e67e5dd4dc2d3cfc0f;p=pgtranslation%2Fadmin.git Change Git repo URLs from git: to https: per request from sysadmins --- diff --git a/wwwtools/mrconfig b/wwwtools/mrconfig index eb3e688..2ed3c5a 100644 --- a/wwwtools/mrconfig +++ b/wwwtools/mrconfig @@ -1,3 +1,3 @@ -include = cat messages-branches.txt | while read dir branch; do echo "[scm/$dir]"; echo "checkout = git clone --depth=1 --no-single-branch -b $branch git://git.postgresql.org/git/pgtranslation/messages.git $dir"; echo "pre_update = git checkout $branch"; echo; done +include = cat messages-branches.txt | while read dir branch; do echo "[scm/$dir]"; echo "checkout = git clone --depth=1 --no-single-branch -b $branch https://git.postgresql.org/git/pgtranslation/messages.git $dir"; echo "pre_update = git checkout $branch"; echo; done -include = cat postgresql-branches.txt | while read dir branch; do echo "[scm/$dir]"; echo "checkout = git clone --depth=1 -b $branch git://git.postgresql.org/git/postgresql.git $dir"; echo "pre_update = git checkout $branch"; echo; done +include = cat postgresql-branches.txt | while read dir branch; do echo "[scm/$dir]"; echo "checkout = git clone --depth=1 -b $branch https://git.postgresql.org/git/postgresql.git $dir"; echo "pre_update = git checkout $branch"; echo; done