# HG changeset patch # User Christian Ebert # Date 1249076987 -7200 # Node ID 45aaf27f95b8243fcfcd056fbc9bd4cfd2525dbe # Parent e668bcd0e25f5ec0534ecf5b314e23d5f356388e patchbomb: reST syntax for literal blocks in help text diff -r e668bcd0e25f -r 45aaf27f95b8 hgext/patchbomb.py --- a/hgext/patchbomb.py Sat Aug 01 00:36:22 2009 +0200 +++ b/hgext/patchbomb.py Fri Jul 31 23:49:47 2009 +0200 @@ -202,22 +202,22 @@ single email containing a binary Mercurial bundle as an attachment will be sent. - Examples: + Examples:: - hg email -r 3000 # send patch 3000 only - hg email -r 3000 -r 3001 # send patches 3000 and 3001 - hg email -r 3000:3005 # send patches 3000 through 3005 - hg email 3000 # send patch 3000 (deprecated) + hg email -r 3000 # send patch 3000 only + hg email -r 3000 -r 3001 # send patches 3000 and 3001 + hg email -r 3000:3005 # send patches 3000 through 3005 + hg email 3000 # send patch 3000 (deprecated) - hg email -o # send all patches not in default - hg email -o DEST # send all patches not in DEST - hg email -o -r 3000 # send all ancestors of 3000 not in default - hg email -o -r 3000 DEST # send all ancestors of 3000 not in DEST + hg email -o # send all patches not in default + hg email -o DEST # send all patches not in DEST + hg email -o -r 3000 # send all ancestors of 3000 not in default + hg email -o -r 3000 DEST # send all ancestors of 3000 not in DEST - hg email -b # send bundle of all patches not in default - hg email -b DEST # send bundle of all patches not in DEST - hg email -b -r 3000 # bundle of all ancestors of 3000 not in default - hg email -b -r 3000 DEST # bundle of all ancestors of 3000 not in DEST + hg email -b # send bundle of all patches not in default + hg email -b DEST # send bundle of all patches not in DEST + hg email -b -r 3000 # bundle of all ancestors of 3000 not in default + 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 the [email] section in hgrc(5) for details.