1
0
mirror of https://github.com/django/django.git synced 2024-12-22 09:05:43 +00:00

Corrected curl call in working with Git docs.

This commit is contained in:
Smile 2022-10-21 08:12:12 -07:00 committed by GitHub
parent 38936f6a0c
commit 5ec64fa481
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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