# HG changeset patch # User Pierre-Yves David # Date 1340014266 -7200 # Node ID 78d01e341438e8c3e79f25d55de9f97f9075541f # Parent 04823ea70d15f62ad1297c6f2e5ac77964cc2286 evolve: add alias for kill and stabilize diff --git a/hgext/evolve.py b/hgext/evolve.py --- a/hgext/evolve.py +++ b/hgext/evolve.py @@ -219,7 +219,7 @@ cmdtable = {} command = cmdutil.command(cmdtable) -@command('^stabilize', +@command('^stabilize|evolve', [ ('n', 'dry-run', False, 'Do nothing but printing what should be done'), ('A', 'any', False, 'Stabilize unstable change on any topological branch'), @@ -341,7 +341,7 @@ return 1 -@command('^kill', +@command('^kill|obsolete', [ ('n', 'new', [], _("New changeset that justify this one to be killed")) ],