summaryrefslogtreecommitdiff
path: root/docs/internals/contributing/writing-code
diff options
context:
space:
mode:
authorSmile <84652925+SmailBestybay@users.noreply.github.com>2022-10-21 08:12:12 -0700
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2022-10-21 16:13:02 +0100
commit72e74e46afda713a48f18c6f8630d60c64f3bc8a (patch)
tree34b9dc82740bdc77b53721ef9618a3553d0c4c62 /docs/internals/contributing/writing-code
parentd2c52fc7270d82ad6403aa5aa8ca331fc1853ea1 (diff)
[4.1.x] Corrected curl call in working with Git docs.
Backport of 5ec64fa481892747ee5ce7ec13584cc4fe53b857 from main
Diffstat (limited to 'docs/internals/contributing/writing-code')
-rw-r--r--docs/internals/contributing/writing-code/working-with-git.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/internals/contributing/writing-code/working-with-git.txt b/docs/internals/contributing/writing-code/working-with-git.txt
index 08bf5b23e7..ab3ab25f26 100644
--- a/docs/internals/contributing/writing-code/working-with-git.txt
+++ b/docs/internals/contributing/writing-code/working-with-git.txt
@@ -255,7 +255,7 @@ patches. Those patches will typically exist as pull requests on GitHub and
can be easily integrated into your local repository::
git checkout -b pull_xxxxx upstream/main
- curl https://github.com/django/django/pull/xxxxx.patch | git am
+ curl -L https://github.com/django/django/pull/xxxxx.patch | git am
This will create a new branch and then apply the changes from the pull request
to it. At this point you can run the tests or do anything else you need to