Skip to content

Commit

Permalink
[4.0.x] Fixed #33585 -- Made example git repo URLs use HTTPS protocol.
Browse files Browse the repository at this point in the history
The SSH-based checkout requires additional configuration, which is
beneficial to defer for new contributors.

Follow up to 3c6a4fd. This commit
updates the remaining examples.
Backport of 9fed515 from main
  • Loading branch information
carltongibson authored and felixxm committed Mar 22, 2022
1 parent fa76f6b commit c0a34be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/internals/contributing/writing-code/working-with-git.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
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

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
===================
Expand Down

0 comments on commit c0a34be

Please sign in to comment.