1
0
mirror of https://github.com/django/django.git synced 2025-02-13 10:56:48 +00:00

Improved "rebase" example for upstream changes in working with Git docs.

This commit is contained in:
Smile 2022-10-24 01:04:38 -07:00 committed by GitHub
parent 577dbcbb4f
commit 83cdcac355
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -196,7 +196,7 @@ When upstream (``django/django``) has changed, you should rebase your work. To
do this, use::
git fetch upstream
git rebase
git rebase upstream/main
The work is automatically rebased using the branch you forked on, in the
example case using ``upstream/main``.