Those patches implements a new --quote-email=<file> option. Typical use case: the user receives a bug report by email and replies with a patch. Before this patch, to make a proper reply, the user had to perform several steps manually using "git send-email": * Add --in-reply-to=<message_id> to the command-line for proper threading. * Include the original recipients of the message using --to and --cc. * Copy and prefix the original message with '> ' in the "below triple dash" part of the patch. This patch allows send-email to do most of the job for the user, who can now save the email to a file and use: git send-email --quote-email=<file> "To" and "Cc" will be added automaticaly and the email quoted. It's possible to edit the email before sending with --compose. Based-on-patch-by: Tom Russello <tom.russello@xxxxxxxxxxxxxxxx> Signed-off: Nathan Payre <nathan.payre@xxxxxxxxxxxxxxxxx> Signed-off: Matthieu Moy <matthieu.moy@xxxxxxxxxxxxx> Tom Russello (2): quote-email populates the fields send-email: quote-email quotes the message body Documentation/git-send-email.txt | 5 ++ git-send-email.perl | 146 +++++++++++++++++++++++++++++++++++++-- t/t9001-send-email.sh | 134 ++++++++++++++++++++++++----------- 3 files changed, 240 insertions(+), 45 deletions(-) -- 2.14.2