--- 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):