From 3c6a4fdb6d828a03e368632d88f8261cc30104da Mon Sep 17 00:00:00 2001 From: Min ho Kim Date: Wed, 4 Sep 2019 16:11:22 +1000 Subject: [PATCH] Changed example git clone URLs to use HTTPS. --- docs/internals/contributing/writing-code/unit-tests.txt | 2 +- docs/internals/contributing/writing-code/working-with-git.txt | 2 +- docs/intro/contributing.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/internals/contributing/writing-code/unit-tests.txt b/docs/internals/contributing/writing-code/unit-tests.txt index 44d536fb33..291c50852c 100644 --- a/docs/internals/contributing/writing-code/unit-tests.txt +++ b/docs/internals/contributing/writing-code/unit-tests.txt @@ -28,7 +28,7 @@ Next, clone your fork, install some requirements, and run the tests: .. console:: - $ git clone git@github.com:YourGitHubName/django.git django-repo + $ git clone https://github.com/YourGitHubName/django.git django-repo $ cd django-repo/tests $ python -m pip install -e .. $ python -m pip install -r requirements/py3.txt diff --git a/docs/internals/contributing/writing-code/working-with-git.txt b/docs/internals/contributing/writing-code/working-with-git.txt index 1ace449189..60ba1345a4 100644 --- a/docs/internals/contributing/writing-code/working-with-git.txt +++ b/docs/internals/contributing/writing-code/working-with-git.txt @@ -45,7 +45,7 @@ When you have created your GitHub account, with the nick "GitHub_nick", and `forked Django's repository `__, create a local copy of your fork:: - git clone git@github.com:GitHub_nick/django.git + git clone https://github.com/GitHub_nick/django.git This will create a new directory "django", containing a clone of your GitHub repository. The rest of the git commands on this page need to be run within the diff --git a/docs/intro/contributing.txt b/docs/intro/contributing.txt index 2f156e426e..013f631f0a 100644 --- a/docs/intro/contributing.txt +++ b/docs/intro/contributing.txt @@ -113,7 +113,7 @@ Download the Django source code repository using the following command: .. console:: - $ git clone git@github.com:YourGitHubName/django.git + $ git clone https://github.com/YourGitHubName/django.git .. admonition:: Low bandwidth connection?