在Ubuntu上,通常的apt-get install git-email工作正常。我也可以确认Fedora(yum install git-email)也...
git config --global user.email "myemail@example.com"配置Mail发送选项 git send-email 发送emails通过你的SMTP 服务器, 所以你需要配置服务器参数。参考你的email提供商的文档找到正确的参数。下面是我的mail设置:git config --global sendemail.smtpencryption tls git config --global sendemail.smtp...
我终于弄明白了,问题不是配置的问题,而是防火墙的问题。
Specify a command to run to send the email. The command should be sendmail-like; specifically, it must support the-ioption. The command will be executed in the shell if necessary. Default is the value ofsendemail.sendmailCmd. If unspecified, and if --smtp-server is also unspecified, git-...
In the last case, any format accepted by git-format-patch[1] can be passed to git send-email. The header of the email is configurable via command-line options. If not specified on the command line, the user will be prompted with a ReadLine enabled interface to provide the necessary ...
Specifies the Fully Qualified Domain Name (FQDN) used in the HELO/EHLO command to the SMTP server. Some servers require the FQDN to match your IP address. If not set, git send-email attempts to determine your FQDN automatically. Default is the value ofsendemail.smtpDomain. ...
IFF这是正确的:如何说服git send-email使用TLSv 1?你不能。没有办法设置发送电子邮件的协议或密码。
使用git send-email报:Please install an MTA on this system if you want to use sendmail如何处理? 答: 参考此处
git send-email --dump-aliases 描述 接受命令行上给出的补丁并将其发送出去。修补程序可以指定为文件,目录(这将发送目录中的所有文件),或直接作为修订列表。在最后一种情况下,git-format-patch [1]接受的任何格式都可以传递给 git send-email。 电子邮件的标题可通过命令行选项进行配置。如果未在命令行中指定,...
The header of the email is configurable via command-line options. If not specified on the command line, the user will be prompted with a ReadLine enabled interface to provide the necessary information. There are two formats accepted for patch files: 1. mbox format files This is what git-...