1
0
mirror of https://github.com/django/django.git synced 2025-07-12 05:39:11 +00:00

[2.2.x] Changed example git clone URLs to use HTTPS.

Backport of 3c6a4fdb6d828a03e368632d88f8261cc30104da from master
This commit is contained in:
Min ho Kim 2019-09-04 16:11:22 +10:00 committed by Carlton Gibson
parent b71cabe459
commit 23946bdb06
3 changed files with 3 additions and 3 deletions

View File

@ -28,7 +28,7 @@ how to do that, read our :doc:`contributing tutorial </intro/contributing>`.
Next, clone your fork, install some requirements, and run the tests:: Next, clone your fork, install some requirements, and run the tests::
$ git clone git@github.com:YourGitHubName/django.git django-repo $ git clone https://github.com/YourGitHubName/django.git django-repo
$ cd django-repo/tests $ cd django-repo/tests
$ pip install -e .. $ pip install -e ..
$ pip install -r requirements/py3.txt $ pip install -r requirements/py3.txt

View File

@ -45,7 +45,7 @@ When you have created your GitHub account, with the nick "GitHub_nick", and
`forked Django's repository <https://github.com/django/django/fork>`__, `forked Django's repository <https://github.com/django/django/fork>`__,
create a local copy of your fork:: 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 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 repository. The rest of the git commands on this page need to be run within the

View File

@ -113,7 +113,7 @@ Download the Django source code repository using the following command:
.. console:: .. console::
$ git clone git@github.com:YourGitHubName/django.git $ git clone https://github.com/YourGitHubName/django.git
.. admonition:: Low bandwidth connection? .. admonition:: Low bandwidth connection?