From fa57fb8aeb93c60dcb5eb75a7f88f61afaf35fb9 Mon Sep 17 00:00:00 2001 From: "Dario Cangialosi, Coder" Date: Wed, 19 Dec 2018 19:28:03 +0100 Subject: [PATCH] Use HTTPS URL example for git clone commands. (#6134) --- CONTRIBUTING.md | 2 +- docs/index.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 32787e19a..c947a7b8c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -50,7 +50,7 @@ Getting involved in triaging incoming issues is a good way to start contributing To start developing on Django REST framework, clone the repo: - git clone git@github.com:encode/django-rest-framework.git + git clone https://github.com/encode/django-rest-framework Changes should broadly follow the [PEP 8][pep-8] style conventions, and we recommend you set up your editor to automatically indicate non-conforming styles. diff --git a/docs/index.md b/docs/index.md index 6dbec8f11..f015078a4 100644 --- a/docs/index.md +++ b/docs/index.md @@ -107,7 +107,7 @@ Install using `pip`, including any optional packages you want... ...or clone the project from github. - git clone git@github.com:encode/django-rest-framework.git + git clone https://github.com/encode/django-rest-framework Add `'rest_framework'` to your `INSTALLED_APPS` setting.