Mercurial > public > mercurial-scm > evolve
diff hgext/evolve.py @ 507:4b1797518abe stable
evolve: add touch and fold to command that may create troubles
They should raise warning about it too.
author | Pierre-Yves David <pierre-yves.david@logilab.fr> |
---|---|
date | Fri, 24 Aug 2012 19:11:49 +0200 |
parents | 43e1b2cab789 |
children | c072e559746d |
line wrap: on
line diff
--- a/hgext/evolve.py Fri Aug 24 17:27:09 2012 +0200 +++ b/hgext/evolve.py Fri Aug 24 19:11:49 2012 +0200 @@ -2103,7 +2103,7 @@ except KeyError: raise error.Abort(_('evolution extension requires rebase extension.')) - for cmd in ['amend', 'kill', 'uncommit']: + for cmd in ['amend', 'kill', 'uncommit', 'touch', 'fold']: entry = extensions.wrapcommand(cmdtable, cmd, warnobserrors)