diff options
author | EuAndreh <eu@euandre.org> | 2020-09-05 05:04:24 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-09-05 05:04:24 -0300 |
commit | b8220e3361f2fc5dd76197f96f4bafebbf22b81f (patch) | |
tree | aac7855fca9ea0fa80cf5009c26adb0afeb01687 | |
parent | Add post on git request-pull (diff) | |
download | euandre.org-b8220e3361f2fc5dd76197f96f4bafebbf22b81f.tar.gz euandre.org-b8220e3361f2fc5dd76197f96f4bafebbf22b81f.tar.xz |
pr post: break lines that are too long
-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 %} |