diff options
Diffstat (limited to '')
-rw-r--r-- | _tils/2020-09-05-pull-requests-with-git-the-oldschool-way.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/_tils/2020-09-05-pull-requests-with-git-the-oldschool-way.md b/_tils/2020-09-05-pull-requests-with-git-the-oldschool-way.md index 1ad7e8e..576d0ed 100644 --- a/_tils/2020-09-05-pull-requests-with-git-the-oldschool-way.md +++ b/_tils/2020-09-05-pull-requests-with-git-the-oldschool-way.md @@ -83,10 +83,12 @@ 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 | mail list@example.com -s "PR: Add another thing to repo" +git request-pull HEAD~5 public-origin -p | \ + mail list@example.com -s "PR: Add another thing to repo" # send every commit that is new in "other-branch" -git request-pull master public-origin other-branch | mail list@example.com -s 'PR: All commits from my "other-brach"' +git request-pull master public-origin other-branch | \ + mail list@example.com -s 'PR: All commits from my "other-brach"' ``` [cli-email]: {% link _tils/2020-09-04-send-emails-using-the-command-line-for-fun-and-profit.md %} |