comparison hgext/evolve.py @ 1326:ae678c98b685

evolve: improve the help message of --rev User's are not exposed to the notion of revset, this patch makes the help message more intelligible.
author Laurent Charignon <lcharignon@fb.com>
date Tue, 05 May 2015 18:20:40 -0700
parents 1fe3da0b4601
children 7821a00fb6de
comparison
equal deleted inserted replaced
1325:1fe3da0b4601 1326:ae678c98b685
1226 [('n', 'dry-run', False, 1226 [('n', 'dry-run', False,
1227 'do not perform actions, just print what would be done'), 1227 'do not perform actions, just print what would be done'),
1228 ('', 'confirm', False, 1228 ('', 'confirm', False,
1229 'ask for confirmation before performing the action'), 1229 'ask for confirmation before performing the action'),
1230 ('A', 'any', False, 'also consider troubled changesets unrelated to current working directory'), 1230 ('A', 'any', False, 'also consider troubled changesets unrelated to current working directory'),
1231 ('r', 'rev', '', 'revset to find troubles in'), 1231 ('r', 'rev', '', 'solves troubles of these revisions'),
1232 ('a', 'all', False, 'evolve all troubled changesets in the repo ' 1232 ('a', 'all', False, 'evolve all troubled changesets in the repo '
1233 '(implies any)'), 1233 '(implies any)'),
1234 ('c', 'continue', False, 'continue an interrupted evolution'), 1234 ('c', 'continue', False, 'continue an interrupted evolution'),
1235 ] + mergetoolopts, 1235 ] + mergetoolopts,
1236 _('[OPTIONS]...')) 1236 _('[OPTIONS]...'))