# HG changeset patch # User Martin von Zweigbergk # Date 1584152942 25200 # 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 -r dc25de8117e4 -r c4c97cabfc16 hgext/rebase.py --- a/hgext/rebase.py Fri Mar 13 16:36:31 2020 -0700 +++ b/hgext/rebase.py Fri Mar 13 19:29:02 2020 -0700 @@ -871,7 +871,7 @@ + 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):