aboutsummaryrefslogtreecommitdiff
path: root/_tils/2020-09-05-pull-requests-with-git-the-old-school-way.md
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--_tils/2020-09-05-pull-requests-with-git-the-old-school-way.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/_tils/2020-09-05-pull-requests-with-git-the-old-school-way.md b/_tils/2020-09-05-pull-requests-with-git-the-old-school-way.md
index e7d20f1..43f83fc 100644
--- a/_tils/2020-09-05-pull-requests-with-git-the-old-school-way.md
+++ b/_tils/2020-09-05-pull-requests-with-git-the-old-school-way.md
@@ -91,7 +91,7 @@ git request-pull HEAD public-origin | mail author@example.com -s "PR: Add thing
# send a PR with your last 5 commits to the project's mailing
# list, including the patch
-git request-pull HEAD~5 public-origin -p | \
+git request-pull -p HEAD~5 public-origin | \
mail list@example.com -s "PR: Add another thing to repo"
# send every commit that is new in "other-branch"