hgext/mq.py
changeset 6610 92b5be854677
parent 6609 ff5ef3c0fe10
child 6611 f4c612da788d
equal deleted inserted replaced
6609:ff5ef3c0fe10 6610:92b5be854677
  2321     "qnext": (next, [] + seriesopts, _('hg qnext [-s]')),
  2321     "qnext": (next, [] + seriesopts, _('hg qnext [-s]')),
  2322     "qprev": (prev, [] + seriesopts, _('hg qprev [-s]')),
  2322     "qprev": (prev, [] + seriesopts, _('hg qprev [-s]')),
  2323     "^qpop":
  2323     "^qpop":
  2324         (pop,
  2324         (pop,
  2325          [('a', 'all', None, _('pop all patches')),
  2325          [('a', 'all', None, _('pop all patches')),
  2326           ('n', 'name', '', _('pop patches until the named patch is the current patch')),
  2326           ('n', 'name', '', _('queue name to pop')),
  2327           ('f', 'force', None, _('forget any local changes'))],
  2327           ('f', 'force', None, _('forget any local changes'))],
  2328          _('hg qpop [-a] [-n NAME] [-f] [PATCH | INDEX]')),
  2328          _('hg qpop [-a] [-n NAME] [-f] [PATCH | INDEX]')),
  2329     "^qpush":
  2329     "^qpush":
  2330         (push,
  2330         (push,
  2331          [('f', 'force', None, _('apply if the patch has rejects')),
  2331          [('f', 'force', None, _('apply if the patch has rejects')),