如果使用"--no-thread" 禁用,则不会添加这些标题(除非使用 --in-reply-to 指定)。 默认值是 "sendemail.thread" 配置值;如果未指定,则默认为 --thread 选项。 当git send-email 被要求添加 In-Reply-To 头信息时,用户应确保该头条信息不存在(特别要注意的是,git format-patch 可被配置为自行进行线程处理...
$ git commit -s -m "Add format strings for bb_error_msg_and_die" 4. Format a patch and send it out to the receiver: $ git format-patch -C -n master..$dev_branch $ git send-email --compose --no-chain-reply-to --suppress-from --to kernel@kernel.org 0001-*.patch...
用户需要确保在git send-email被要求添加 In-Reply-To 头时已经存在(特别是git format-patch可以配置为自己执行线程)。如果不这样做,可能无法在收件人的MUA中产生预期结果。 管理 --confirm=<mode> 在发送之前确认: always在发送之前会一直确认 never发送前绝不会确认 ...
使用--compose时,git send-email 将使用消息中指定的 From,Subject 和 In-Reply-To 标头。如果邮件的正文(您在标题后面键入的内容和空行)仅包含空行(或 Git:前缀)行,则不会发送摘要,但是 From,Subject 和 In-Reply-To 标题将除非他们被删除使用。 将提示缺少 From 或 In-Reply-To 标头。 请参见sendemail.m...
你的版本可能有一个send-email的安装包。在Debian下,这个安装包的名字是"git-email"。配置你的名字和Email地址 你应该告诉git你的名字和email地址。你可能已经做了这一步了,如果没有,执行下面的命令:git config --global user.name "My Name"git config --global user.email "myemail@example....
git config --global sendemail.chainreplyto false git config --global sendemail.smtpserverport 465 6. 发送邮件给 ffmpeg-devel@ffmpeg.org git send-email ../vf_delogo_add_options.patch 输入ffmpeg-devel 邮箱地址 ffmpeg-devel@ffmpeg.org, 回车两次就完成. ...
When--composeis used, git send-email will use the From, Subject, and In-Reply-To headers specified in the message. If the body of the message (what you type after the headers and a blank line) only contains blank (or Git: prefixed) lines, the summary won’t be sent, but From, ...
$ git commit -s -m "Add format strings for bb_error_msg_and_die" 4. Format a patch and send it out to the receiver: $ git format-patch -C -n master..$dev_branch $ git send-email --compose --no-chain-reply-to --suppress-from --to kernel@kernel.org 0001-*.patch...
git send-email [<options>] <format-patch options> git send-email --dump-aliases Composing: --from <str> * Email From: --[no-]to <str> * Email To: --[no-]cc <str> * Email Cc: --[no-]bcc <str> * Email Bcc: --subject <str> * Email "Subject:" --reply-to...
When--composeis used, git send-email will use the From, To, Cc, Bcc, Subject, Reply-To, and In-Reply-To headers specified in the message. If the body of the message (what you type after the headers and a blank line) only contains blank (or Git: prefixed) lines, the summary won...