# HG changeset patch # User John Goerzen # Date 1174960009 18000 # Node ID 8625504f507ccdb99a2ed1a30d3cb78fca625f45 # Parent a1406a50ca83e9d3388f7273c8f6ee9283d83c5c Slight refining to help text in patchbomb.py diff --git a/hgext/patchbomb.py b/hgext/patchbomb.py --- a/hgext/patchbomb.py +++ b/hgext/patchbomb.py @@ -77,10 +77,11 @@ try: 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 @@ def patchbomb(ui, repo, *revs, **opts): 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):