Mercurial > evolve
comparison hgext/evolve.py @ 315:4bbc17716f5a
uncommit: warn about new instability
author | Patrick Mezard <patrick@mezard.eu> |
---|---|
date | Tue, 26 Jun 2012 16:21:08 +0200 |
parents | ebd286f06879 |
children | da7509e7b50c |
comparison
equal
deleted
inserted
replaced
314:ebd286f06879 | 315:4bbc17716f5a |
---|---|
678 _("make graft obsoletes its source"))) | 678 _("make graft obsoletes its source"))) |
679 | 679 |
680 # warning about more obsolete | 680 # warning about more obsolete |
681 for cmd in ['commit', 'push', 'pull', 'graft', 'phase', 'unbundle']: | 681 for cmd in ['commit', 'push', 'pull', 'graft', 'phase', 'unbundle']: |
682 entry = extensions.wrapcommand(commands.table, cmd, warnobserrors) | 682 entry = extensions.wrapcommand(commands.table, cmd, warnobserrors) |
683 for cmd in ['kill', 'amend']: | 683 for cmd in ['amend', 'kill', 'uncommit']: |
684 entry = extensions.wrapcommand(cmdtable, cmd, warnobserrors) | 684 entry = extensions.wrapcommand(cmdtable, cmd, warnobserrors) |
685 | 685 |
686 if rebase is not None: | 686 if rebase is not None: |
687 entry = extensions.wrapcommand(rebase.cmdtable, 'rebase', warnobserrors) | 687 entry = extensions.wrapcommand(rebase.cmdtable, 'rebase', warnobserrors) |