Forrest logo
back to context overview

git-send-email

List of commands for git-send-email:

  • git-send-email:tldr:43aba git-send-email: Send multiple (e.g. 10) commits in the current branch.
    $ git send-email ${-10}
    try on your machine
    explain this command
  • git-send-email:tldr:512da git-send-email: Send an introductory email message for the patch series.
    $ git send-email -${number_of_commits} --compose
    try on your machine
    explain this command
  • git-send-email:tldr:92c16 git-send-email: Review and edit the email message for each patch you're about to send.
    $ git send-email -${number_of_commits} --annotate
    try on your machine
    explain this command
  • git-send-email:tldr:b9390 git-send-email: Send a given commit.
    $ git send-email -1 ${commit}
    try on your machine
    explain this command
  • git-send-email:tldr:cfaaa git-send-email: Send the last commit in the current branch.
    $ git send-email -1
    try on your machine
    explain this command
back to context overview