summaryrefslogtreecommitdiff
path: root/docs/internals/contributing/writing-code/working-with-git.txt
diff options
context:
space:
mode:
authorCarlton Gibson <carlton.gibson@noumenal.es>2022-03-22 11:57:44 +0100
committerGitHub <noreply@github.com>2022-03-22 11:57:44 +0100
commit9fed515a251d488172feb1652bb5179344364fb3 (patch)
tree8dd1813211eac1c581f76a2a1a5b0b4d989f54b7 /docs/internals/contributing/writing-code/working-with-git.txt
parent653daaa60cf4de7071136541169285ed3d71974d (diff)
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 3c6a4fdb6d828a03e368632d88f8261cc30104da. This commit updates the remaining examples.
Diffstat (limited to 'docs/internals/contributing/writing-code/working-with-git.txt')
-rw-r--r--docs/internals/contributing/writing-code/working-with-git.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/internals/contributing/writing-code/working-with-git.txt b/docs/internals/contributing/writing-code/working-with-git.txt
index 1c9b660c07..08bf5b23e7 100644
--- a/docs/internals/contributing/writing-code/working-with-git.txt
+++ b/docs/internals/contributing/writing-code/working-with-git.txt
@@ -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
===================