# HG changeset patch # User John Goerzen # Date 1174960009 18000 # Node ID 8625504f507ccdb99a2ed1a30d3cb78fca625f45 # Parent a1406a50ca83e9d3388f7273c8f6ee9283d83c5c Slight refining to help text in patchbomb.py diff -r a1406a50ca83 -r 8625504f507c hgext/patchbomb.py --- 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):