Replace openstack.org git:// URLs with https://

This is a mechanically generated change to replace openstack.org
git:// URLs with https:// equivalents.

This is in aid of a planned future move of the git hosting
infrastructure to a self-hosted instance of gitea (https://gitea.io),
which does not support the git wire protocol at this stage.

This update should result in no functional change.

For more information see the thread at

 http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003825.html

Change-Id: I36e7ad4b011f22adbf4d4c3dc7a0727f881161db
This commit is contained in:
Ian Wienand 2019-03-24 20:33:42 +00:00
parent 117eb45321
commit c77d387dfd
5 changed files with 18 additions and 18 deletions

View File

@ -29,10 +29,10 @@ To set up a workspace to use the python3-first tools::
$ mkdir python3-first
$ cd python3-first
$ git clone git://git.openstack.org/openstack-infra/project-config
$ git clone git://git.openstack.org/openstack-infra/openstack-zuul-jobs
$ git clone git://git.openstack.org/openstack-infra/zuul-jobs
$ git clone git://git.openstack.org/openstack/goal-tools
$ git clone https://git.openstack.org/openstack-infra/project-config
$ git clone https://git.openstack.org/openstack-infra/openstack-zuul-jobs
$ git clone https://git.openstack.org/openstack-infra/zuul-jobs
$ git clone https://git.openstack.org/openstack/goal-tools
$ mkdir Output
Preparing Patches
@ -157,8 +157,8 @@ copied into that branch of that project.
.. code-block:: console
$ git clone git://git.openstack.org/openstack-infra/project-config
$ git clone git://git.openstack.org/openstack/goal-tools
$ git clone https://git.openstack.org/openstack-infra/project-config
$ git clone https://git.openstack.org/openstack/goal-tools
$ cd goal-tools
$ tox -e venv -- python3-first jobs extract --project-config ../project-config \
openstack-dev/devstack stable/queens
@ -177,7 +177,7 @@ repository to include all of the settings shown by ``jobs extract``.
.. code-block:: console
$ git clone git://git.openstack.org/openstack/oslo.config
$ git clone https://git.openstack.org/openstack/oslo.config
$ cd oslo.config
$ git checkout -b python3-first
$ cd ../goal-tools

View File

@ -16,7 +16,7 @@
"created": "2018-04-10 06:07:47.000000000",
"fetch": {
"git": {
"url": "git://git.openstack.org/openstack/blazar-dashboard",
"url": "https://git.openstack.org/openstack/blazar-dashboard",
"ref": "refs/changes/53/555353/2"
},
"anonymous http": {
@ -38,7 +38,7 @@
"created": "2018-04-22 02:28:56.000000000",
"fetch": {
"git": {
"url": "git://git.openstack.org/openstack/blazar-dashboard",
"url": "https://git.openstack.org/openstack/blazar-dashboard",
"ref": "refs/changes/53/555353/4"
},
"anonymous http": {
@ -60,7 +60,7 @@
"created": "2018-04-20 20:29:17.000000000",
"fetch": {
"git": {
"url": "git://git.openstack.org/openstack/blazar-dashboard",
"url": "https://git.openstack.org/openstack/blazar-dashboard",
"ref": "refs/changes/53/555353/3"
},
"anonymous http": {
@ -82,7 +82,7 @@
"created": "2018-03-22 16:05:45.000000000",
"fetch": {
"git": {
"url": "git://git.openstack.org/openstack/blazar-dashboard",
"url": "https://git.openstack.org/openstack/blazar-dashboard",
"ref": "refs/changes/53/555353/1"
},
"anonymous http": {
@ -104,7 +104,7 @@
"created": "2018-04-26 02:59:34.000000000",
"fetch": {
"git": {
"url": "git://git.openstack.org/openstack/blazar-dashboard",
"url": "https://git.openstack.org/openstack/blazar-dashboard",
"ref": "refs/changes/53/555353/5"
},
"anonymous http": {

View File

@ -218,7 +218,7 @@
},
"git": {
"ref": "refs/changes/07/561507/2",
"url": "git://git.openstack.org/openstack/releases"
"url": "https://git.openstack.org/openstack/releases"
}
},
"created": "2018-04-16 05:00:21.000000000",
@ -240,7 +240,7 @@
},
"git": {
"ref": "refs/changes/07/561507/1",
"url": "git://git.openstack.org/openstack/releases"
"url": "https://git.openstack.org/openstack/releases"
}
},
"created": "2018-04-16 04:50:17.000000000",

View File

@ -450,7 +450,7 @@
},
"git": {
"ref": "refs/changes/33/566433/1",
"url": "git://git.openstack.org/openstack/releases"
"url": "https://git.openstack.org/openstack/releases"
}
},
"kind": "REWORK",
@ -494,7 +494,7 @@
},
"git": {
"ref": "refs/changes/33/566433/2",
"url": "git://git.openstack.org/openstack/releases"
"url": "https://git.openstack.org/openstack/releases"
}
},
"kind": "REWORK",

View File

@ -58,7 +58,7 @@ Options:
--ref -- The git reference to check out. Defaults to HEAD.
--upstream -- The upstream server URL, without the git repo
part. Defaults to git://git.openstack.org
part. Defaults to https://git.openstack.org
EOF
}
@ -68,7 +68,7 @@ WORKSPACE="."
CACHE_DIR="${ZUUL_CACHE_DIR:-/opt/git}"
BRANCH="master"
REF=""
UPSTREAM="git://git.openstack.org"
UPSTREAM="https://git.openstack.org"
if [[ $(uname) != "Darwin" ]]; then
OPTS=`getopt -o hv --long branch:,cache-dir:,ref:,upstream:,workspace: -n $0 -- "$@"`