diff options
author | EuAndreh <eu@euandre.org> | 2021-09-13 13:09:45 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-09-13 13:09:45 -0300 |
commit | 543c82987ea7f6206aa742cedf59de713187b43c (patch) | |
tree | a9dee3362de96f2180d39697efe0698bce498625 | |
parent | Pastebin: O(n) -> amortized O(1) (diff) | |
download | euandre.org-543c82987ea7f6206aa742cedf59de713187b43c.tar.gz euandre.org-543c82987ea7f6206aa742cedf59de713187b43c.tar.xz |
_tils/2020-09-05-pull-requests-with-git-the-old-school-way.md: Fix order of request-pull option
Diffstat (limited to '')
-rw-r--r-- | _tils/2020-09-05-pull-requests-with-git-the-old-school-way.md | 2 |
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" |