summaryrefslogtreecommitdiff
path: root/docs/internals/contributing
diff options
context:
space:
mode:
authorMin ho Kim <minho42@gmail.com>2019-09-04 16:11:22 +1000
committerCarlton Gibson <carlton.gibson@noumenal.es>2019-09-04 08:12:36 +0200
commit23946bdb06c459086851e7dfa6117bdc9d301466 (patch)
tree8c2085395ea5fb9ca826d83c4003591acf0e0c27 /docs/internals/contributing
parentb71cabe45970222d5c593bef44f01aea96854c89 (diff)
[2.2.x] Changed example git clone URLs to use HTTPS.
Backport of 3c6a4fdb6d828a03e368632d88f8261cc30104da from master
Diffstat (limited to 'docs/internals/contributing')
-rw-r--r--docs/internals/contributing/writing-code/unit-tests.txt2
-rw-r--r--docs/internals/contributing/writing-code/working-with-git.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/internals/contributing/writing-code/unit-tests.txt b/docs/internals/contributing/writing-code/unit-tests.txt
index 3480e3f2ca..fa4df3c429 100644
--- a/docs/internals/contributing/writing-code/unit-tests.txt
+++ b/docs/internals/contributing/writing-code/unit-tests.txt
@@ -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::
- $ git clone git@github.com:YourGitHubName/django.git django-repo
+ $ git clone https://github.com/YourGitHubName/django.git django-repo
$ cd django-repo/tests
$ pip install -e ..
$ 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 <https://github.com/django/django/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
repository. The rest of the git commands on this page need to be run within the