comparison hgext/evolve.py @ 1045:b346d7a3d89e

doc: forgotten amend
author Pierre-Yves David <pierre-yves.david@fb.com>
date Fri, 08 Aug 2014 21:06:48 -0700
parents c878deb2fd73
children 296d48e1f55a
comparison
equal deleted inserted replaced
1044:c878deb2fd73 1045:b346d7a3d89e
1150 1150
1151 @command('^evolve|stabilize|solve', 1151 @command('^evolve|stabilize|solve',
1152 [('n', 'dry-run', False, 1152 [('n', 'dry-run', False,
1153 'do not perform actions, just print what would be done'), 1153 'do not perform actions, just print what would be done'),
1154 ('A', 'any', False, 'also consider troubled changesets unrelated to current working directory'), 1154 ('A', 'any', False, 'also consider troubled changesets unrelated to current working directory'),
1155 ('a', 'all', False, 'evolve all troubled changesets (implies any)'), 1155 ('a', 'all', False, 'evolve all troubled changesets in the repo '
1156 '(implies any)'),
1156 ('c', 'continue', False, 'continue an interrupted evolution'), 1157 ('c', 'continue', False, 'continue an interrupted evolution'),
1157 ] + mergetoolopts, 1158 ] + mergetoolopts,
1158 _('[OPTIONS]...')) 1159 _('[OPTIONS]...'))
1159 def evolve(ui, repo, **opts): 1160 def evolve(ui, repo, **opts):
1160 """Solve trouble in your repository 1161 """Solve trouble in your repository
1164 - merge divergent changesets, 1165 - merge divergent changesets,
1165 - update to a successor if the working directory parent is 1166 - update to a successor if the working directory parent is
1166 obsolete 1167 obsolete
1167 1168
1168 By default a single changeset is evolved for each invocation and only 1169 By default a single changeset is evolved for each invocation and only
1169 troubles changesets that would evolve as a descendant of the current 1170 troubled changesets that would evolve as a descendant of the current
1170 working directory will be considered. See --all and --any options to change 1171 working directory will be considered. See --all and --any options to change
1171 this behavior. 1172 this behavior.
1172 1173
1173 - For unstable, this means taking the first which could be rebased as a 1174 - For unstable, this means taking the first which could be rebased as a
1174 child of the working directory parent revision or one of its descendants 1175 child of the working directory parent revision or one of its descendants