# HG changeset patch # User Yuya Nishihara # Date 2017-10-21 08:01:20 # Node ID ddf37b6b8c3d561eab26daea11e3b74b09abb5c3 # Parent a18eef03d879b179c69744ff3568615402542938 rebase: drop --style option It existed from the very start, but I don't think the rebase command does support log-like templates. diff --git a/hgext/rebase.py b/hgext/rebase.py --- a/hgext/rebase.py +++ b/hgext/rebase.py @@ -53,7 +53,6 @@ from mercurial import ( ) release = lock.release -templateopts = cmdutil.templateopts # The following constants are used throughout the rebase module. The ordering of # their values must be maintained. @@ -594,7 +593,7 @@ class rebaseruntime(object): ('t', 'tool', '', _('specify merge tool')), ('c', 'continue', False, _('continue an interrupted rebase')), ('a', 'abort', False, _('abort an interrupted rebase'))] + - templateopts, + cmdutil.formatteropts, _('[-s REV | -b REV] [-d REV] [OPTION]')) def rebase(ui, repo, **opts): """move changeset (and descendants) to a different branch