##// END OF EJS Templates
patchbomb: reST syntax for literal blocks in help text
Christian Ebert -
r9289:45aaf27f default
parent child Browse files
Show More
@@ -202,22 +202,22 b' def patchbomb(ui, repo, *revs, **opts):'
202 single email containing a binary Mercurial bundle as an attachment
202 single email containing a binary Mercurial bundle as an attachment
203 will be sent.
203 will be sent.
204
204
205 Examples:
205 Examples::
206
206
207 hg email -r 3000 # send patch 3000 only
207 hg email -r 3000 # send patch 3000 only
208 hg email -r 3000 -r 3001 # send patches 3000 and 3001
208 hg email -r 3000 -r 3001 # send patches 3000 and 3001
209 hg email -r 3000:3005 # send patches 3000 through 3005
209 hg email -r 3000:3005 # send patches 3000 through 3005
210 hg email 3000 # send patch 3000 (deprecated)
210 hg email 3000 # send patch 3000 (deprecated)
211
211
212 hg email -o # send all patches not in default
212 hg email -o # send all patches not in default
213 hg email -o DEST # send all patches not in DEST
213 hg email -o DEST # send all patches not in DEST
214 hg email -o -r 3000 # send all ancestors of 3000 not in default
214 hg email -o -r 3000 # send all ancestors of 3000 not in default
215 hg email -o -r 3000 DEST # send all ancestors of 3000 not in DEST
215 hg email -o -r 3000 DEST # send all ancestors of 3000 not in DEST
216
216
217 hg email -b # send bundle of all patches not in default
217 hg email -b # send bundle of all patches not in default
218 hg email -b DEST # send bundle of all patches not in DEST
218 hg email -b DEST # send bundle of all patches not in DEST
219 hg email -b -r 3000 # bundle of all ancestors of 3000 not in default
219 hg email -b -r 3000 # bundle of all ancestors of 3000 not in default
220 hg email -b -r 3000 DEST # bundle of all ancestors of 3000 not in DEST
220 hg email -b -r 3000 DEST # bundle of all ancestors of 3000 not in DEST
221
221
222 Before using this command, you will need to enable email in your
222 Before using this command, you will need to enable email in your
223 hgrc. See the [email] section in hgrc(5) for details.
223 hgrc. See the [email] section in hgrc(5) for details.
General Comments 0
You need to be logged in to leave comments. Login now