Mercurial > hg
changeset 34963:ddf37b6b8c3d
rebase: drop --style option
It existed from the very start, but I don't think the rebase command does
support log-like templates.
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Sat, 21 Oct 2017 17:01:20 +0900 |
parents | a18eef03d879 |
children | 7ebf850d3166 |
files | hgext/rebase.py |
diffstat | 1 files changed, 1 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/rebase.py Wed Aug 02 13:27:45 2017 +0900 +++ b/hgext/rebase.py Sat Oct 21 17:01:20 2017 +0900 @@ -53,7 +53,6 @@ ) 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 @@ ('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