hgext/evolve.py
changeset 260 fd3db1e6b7a3
parent 258 8337bb3bb958
child 263 de62daaf2054
equal deleted inserted replaced
259:9886034199af 260:fd3db1e6b7a3
   189 command = cmdutil.command(cmdtable)
   189 command = cmdutil.command(cmdtable)
   190 
   190 
   191 @command('^stabilize',
   191 @command('^stabilize',
   192     [
   192     [
   193      ('n', 'dry-run', False, 'Do nothing but printing what should be done'),
   193      ('n', 'dry-run', False, 'Do nothing but printing what should be done'),
   194      ('-A', 'any', False, 'Stabilize unstable change on any topological branch'),
   194      ('A', 'any', False, 'Stabilize unstable change on any topological branch'),
   195     ],
   195     ],
   196     '')
   196     '')
   197 def stabilize(ui, repo, **opts):
   197 def stabilize(ui, repo, **opts):
   198     """move changeset out of the unstable state
   198     """move changeset out of the unstable state
   199 
   199