From c99492cfc635a1d9faccc3e71878f903f2b4587e Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Sun, 24 Mar 2019 20:35:35 +0000 Subject: [PATCH] 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: I669e77c1cc1d626552939b8f65e093e7901ad754 --- doc/source/contributor/quick-dev.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/contributor/quick-dev.rst b/doc/source/contributor/quick-dev.rst index dc6cdb084..df9c3e800 100644 --- a/doc/source/contributor/quick-dev.rst +++ b/doc/source/contributor/quick-dev.rst @@ -47,7 +47,7 @@ Get The Code The placement code lives at https://git.openstack.org/cgit/openstack/placement . We want to clone that:: - git clone git://git.openstack.org/openstack/placement + git clone https://git.openstack.org/openstack/placement cd placement Setup The Database @@ -156,7 +156,7 @@ illustrative purposes. You should make your own:: DB_USER=root DB_PASS=secret - REPO=git://git.openstack.org/openstack/placement + REPO=https://git.openstack.org/openstack/placement # Create a directory for configuration to live. [[ -d $CONF_DIR ]] || (sudo mkdir $CONF_DIR && sudo chown $USER $CONF_DIR)