mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-24 09:55:25 +02:00
git-send-email: add page (#3953)
This commit is contained in:
parent
75fcfdab4e
commit
2c4a92d234
1 changed files with 25 additions and 0 deletions
25
pages/common/git-send-email.md
Normal file
25
pages/common/git-send-email.md
Normal file
|
@ -0,0 +1,25 @@
|
|||
# git send-email
|
||||
|
||||
> Send a collection of patches as emails.
|
||||
> Patches can be specified as files, directions, or a revision list.
|
||||
> More information: https://git-scm.com/docs/git-send-email
|
||||
|
||||
- Send the last commit in the current branch:
|
||||
|
||||
`git send-email -1`
|
||||
|
||||
- Send a given commit:
|
||||
|
||||
`git send-email -1 {{commit}}`
|
||||
|
||||
- Send multiple (e.g. 10) commits in the current branch:
|
||||
|
||||
`git send-email -10`
|
||||
|
||||
- Send an extra mail before the patch mail(s) (e.g. an introduction to the patch set as a cover letter) and edit the mail(s) to be sent:
|
||||
|
||||
`git send-email -{{number of commits} --cover-letter --annotate
|
||||
|
||||
- Send the last commit in the current branch with the patch version (e.g. 2) indicated in the subject header (to appear as [PATCH v2]):
|
||||
|
||||
`git send-email -v2 -1`
|
Loading…
Add table
Reference in a new issue