Mercurial > hg
comparison hgext/rebase.py @ 44554:c4c97cabfc16
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
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Fri, 13 Mar 2020 19:29:02 -0700 |
parents | dc25de8117e4 |
children | 05654ea5137c |
comparison
equal
deleted
inserted
replaced
44553:dc25de8117e4 | 44554:c4c97cabfc16 |
---|---|
869 ), | 869 ), |
870 ] | 870 ] |
871 + cmdutil.dryrunopts | 871 + cmdutil.dryrunopts |
872 + cmdutil.formatteropts | 872 + cmdutil.formatteropts |
873 + cmdutil.confirmopts, | 873 + cmdutil.confirmopts, |
874 _(b'[-s REV | -b REV] [-d REV] [OPTION]'), | 874 _(b'[-s REV | -b REV | [-r REV]...] [-d REV] [OPTION]...'), |
875 helpcategory=command.CATEGORY_CHANGE_MANAGEMENT, | 875 helpcategory=command.CATEGORY_CHANGE_MANAGEMENT, |
876 ) | 876 ) |
877 def rebase(ui, repo, **opts): | 877 def rebase(ui, repo, **opts): |
878 """move changeset (and descendants) to a different branch | 878 """move changeset (and descendants) to a different branch |
879 | 879 |