aboutsummaryrefslogtreecommitdiffstats
path: root/using-git.texinfo
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2013-08-16 03:30:41 +0200
committerMattias Andrée <maandree@operamail.com>2013-08-16 03:30:41 +0200
commit1c788676959a67f1da3e2fc4818ba6e02ec3f0ed (patch)
tree05686306f63810946bcc504b4cd2e860bd67a671 /using-git.texinfo
parentsubject line prefix (diff)
downloadusing-git-1c788676959a67f1da3e2fc4818ba6e02ec3f0ed.tar.gz
using-git-1c788676959a67f1da3e2fc4818ba6e02ec3f0ed.tar.bz2
using-git-1c788676959a67f1da3e2fc4818ba6e02ec3f0ed.tar.xz
sending patches
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'using-git.texinfo')
-rw-r--r--using-git.texinfo33
1 files changed, 33 insertions, 0 deletions
diff --git a/using-git.texinfo b/using-git.texinfo
index c62bf0f..62e263b 100644
--- a/using-git.texinfo
+++ b/using-git.texinfo
@@ -529,6 +529,39 @@ being included, but is rather for discussion,
use `PATCH/RFC'@footnote{RFC is an abbreviation
for `Request for comments'} instead of `PATCH'.
+To send the patch, use @command{git send-email}:
+
+@example
+git send-email --to=EMAIL_ADDRESS_TO_SEND_TO PATCH_FILE
+@end example
+
+If you have registered to the mailing list,
+or for some other reason, want to send under
+a different e-mail address then you made the
+commits with, you need to specify an envelop
+send, by adding an option:
+
+@example
+--envelope-sender=SENDER_EMAIL_ADDRESS
+@end example
+
+You will also need the specify which SMTP
+server to use, authorisation and configurations:
+
+@example
+--smtp-server=DOMAIN # it usally is prefixed with smtp.
+--smtp-server-port=PORT
+--smtp-encryption=ssl # or tls
+--smtp-user=ACCOUNT # usally just the username without domain
+--smtp-pass=PASSPHRASE
+@end example
+
+If you are using a forwarding e-mail, such
+as @@member.fsf.org, you send from using your
+normal e-mail, but use the forwarding e-mail
+address as the envelop-sender, most e-mail
+server should accept this.
+