# HG changeset patch # User Martin von Zweigbergk # Date 2020-03-14 02:29:02 # Node ID c4c97cabfc169cc774e429c8ddd00cb228a67b98 # Parent dc25de8117e4dbd5b381fbfdc69c4929881fdfa3 rebase: mention -r argument in synopsis I'm guessing that we simply forgot to mention it there. I was wondering if maybe `-r` was experimental as long as evolution is, but that doesn't seem to be the case (`-r` is not marked experimental). Differential Revision: https://phab.mercurial-scm.org/D8295 diff --git a/hgext/rebase.py b/hgext/rebase.py --- a/hgext/rebase.py +++ b/hgext/rebase.py @@ -871,7 +871,7 @@ class rebaseruntime(object): + cmdutil.dryrunopts + cmdutil.formatteropts + cmdutil.confirmopts, - _(b'[-s REV | -b REV] [-d REV] [OPTION]'), + _(b'[-s REV | -b REV | [-r REV]...] [-d REV] [OPTION]...'), helpcategory=command.CATEGORY_CHANGE_MANAGEMENT, ) def rebase(ui, repo, **opts):