docs: typo in git pull command

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
This commit is contained in:
Daniel Kesselberg 2023-04-26 15:08:35 +02:00
parent 4e3b7c761e
commit 40b29f6b3a
No known key found for this signature in database
GPG key ID: 36E3664E099D0614

View file

@ -23,7 +23,7 @@ Any changes made to the source code go into the default branch of a repository t
# Switch to the default branch and update it
git checkout main
git pull origin/main
git pull origin main
# Create the new feature branch
git checkout -b feature/foo-bar
@ -56,7 +56,7 @@ More complex changes may require the developer to do the backport manually. This
# Switch to the target branch and update it
git checkout stable25
git pull origin/stable25
git pull origin stable25
# Create the new backport branch
git checkout -b fix/foo-stable25