From 0d59c4db1b1d8d68289f0948361be20051b0c20a Mon Sep 17 00:00:00 2001 From: MarkoNV Date: Mon, 24 Oct 2022 09:09:16 +0200 Subject: [PATCH] Changed git:// protocol to https:// in git-workflow.md since git:// doesn't work anymore (#19634) --- docs/internals/git-workflow.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/internals/git-workflow.md b/docs/internals/git-workflow.md index 681b7c71b1..11e8a499a6 100644 --- a/docs/internals/git-workflow.md +++ b/docs/internals/git-workflow.md @@ -28,7 +28,7 @@ then you must [setup your Git installation to work with GitHub](https://help.git Change to the directory where you cloned Yii, normally, "yii2". Then enter the following command: ``` -git remote add upstream git://github.com/yiisoft/yii2.git +git remote add upstream https://github.com/yiisoft/yii2.git ``` ### 3. Prepare the testing environment @@ -232,7 +232,7 @@ Doing so will save travis from commencing testruns on changes that are not cover ``` git clone git@github.com:YOUR-GITHUB-USERNAME/yii2.git -git remote add upstream git://github.com/yiisoft/yii2.git +git remote add upstream https://github.com/yiisoft/yii2.git ``` ```