changeset 4283:8625504f507c

Slight refining to help text in patchbomb.py
author John Goerzen <jgoerzen@complete.org>
date Mon, 26 Mar 2007 20:46:49 -0500
parents a1406a50ca83
children a04141f51056
files hgext/patchbomb.py
diffstat 1 files changed, 5 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/patchbomb.py	Tue Mar 13 13:17:26 2007 +0100
+++ b/hgext/patchbomb.py	Mon Mar 26 20:46:49 2007 -0500
@@ -77,10 +77,11 @@
 except ImportError: pass
 
 def patchbomb(ui, repo, *revs, **opts):
-    '''send changesets as a series of patch emails
+    '''send changesets by email
 
-    By default, the series starts with a "[PATCH 0 of N]" introduction, which
-    describes the series as a whole.
+    By default, diffs are sent in the format generated by hg export,
+    one per message.  The series starts with a "[PATCH 0 of N]"
+    introduction, which describes the series as a whole.
 
     Each patch email has a Subject line of "[PATCH M of N] ...", using
     the first line of the changeset description as the subject text.
@@ -115,7 +116,7 @@
     hg email -b -r 3000 DEST  # bundle of all ancestors of 3000 not in DEST
 
     Before using this command, you will need to enable email in your hgrc.
-    See hgrc(5) for details.
+    See the [email] section in hgrc(5) for details.
     '''
 
     def prompt(prompt, default = None, rest = ': ', empty_ok = False):