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