hgext/evolve.py
changeset 272 78d01e341438
parent 269 6c6bb7a23bb5
child 284 88a851a54f26
--- a/hgext/evolve.py	Wed Jun 20 15:30:55 2012 +0200
+++ b/hgext/evolve.py	Mon Jun 18 12:11:06 2012 +0200
@@ -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"))
     ],