2020-08-15 01:11:15 +01:00
|
|
|
# git send-email
|
|
|
|
|
|
|
|
> Send a collection of patches as emails.
|
|
|
|
> Patches can be specified as files, directions, or a revision list.
|
2020-08-15 01:20:57 +01:00
|
|
|
> More information: <https://git-scm.com/docs/git-send-email>.
|
2020-08-15 01:11:15 +01:00
|
|
|
|
|
|
|
- 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:
|
|
|
|
|
2020-08-18 23:29:32 +01:00
|
|
|
`git send-email {{-10}}`
|
2020-08-15 01:11:15 +01:00
|
|
|
|
2020-08-18 23:29:32 +01:00
|
|
|
- Send an introductory email message for the patch series:
|
2020-08-15 01:11:15 +01:00
|
|
|
|
2020-08-18 23:29:32 +01:00
|
|
|
`git send-email -{{number of commits}} --compose`
|
2020-08-15 01:11:15 +01:00
|
|
|
|
2020-08-18 23:29:32 +01:00
|
|
|
- Review and edit the email message for each patch you're about to send:
|
2020-08-15 01:11:15 +01:00
|
|
|
|
2020-08-18 23:29:32 +01:00
|
|
|
`git send-email -{{number of commits}} --annotate`
|