mirror of
https://github.com/django/django.git
synced 2024-12-23 01:25:58 +00:00
Fixed #33585 -- Made example git repo URLs use HTTPS protocol.
The SSH-based checkout requires additional configuration, which is
beneficial to defer for new contributors.
Follow up to 3c6a4fdb6d
. This commit
updates the remaining examples.
This commit is contained in:
parent
653daaa60c
commit
9fed515a25
@ -58,12 +58,12 @@ Your GitHub repository will be called "origin" in Git.
|
|||||||
You should also set up ``django/django`` as an "upstream" remote (that is, tell
|
You should also set up ``django/django`` as an "upstream" remote (that is, tell
|
||||||
git that the reference Django repository was the source of your fork of it)::
|
git that the reference Django repository was the source of your fork of it)::
|
||||||
|
|
||||||
git remote add upstream git@github.com:django/django.git
|
git remote add upstream https://github.com/django/django.git
|
||||||
git fetch upstream
|
git fetch upstream
|
||||||
|
|
||||||
You can add other remotes similarly, for example::
|
You can add other remotes similarly, for example::
|
||||||
|
|
||||||
git remote add akaariai git@github.com:akaariai/django.git
|
git remote add akaariai https://github.com/akaariai/django.git
|
||||||
|
|
||||||
Working on a ticket
|
Working on a ticket
|
||||||
===================
|
===================
|
||||||
|
Loading…
Reference in New Issue
Block a user