Changed git:// protocol to https:// in git-workflow.md since git:// doesn't work anymore (#19634)

This commit is contained in:
MarkoNV
2022-10-24 09:09:16 +02:00
committed by GitHub
parent e759584d07
commit 0d59c4db1b

View File

@ -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 <span id="prepare-the-test-environment"></span>
@ -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
```
```