Mercurial > hg
comparison hgext/mq.py @ 9438:b2f3b9c82ac0
Add new flag [-1] to synopsis of qapplied/qunapplied
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 11 Sep 2009 16:58:19 +0200 |
parents | b47fa638bfc7 |
children | cd67bfcfabbe |
comparison
equal
deleted
inserted
replaced
9437:1c4e4004f3a6 | 9438:b2f3b9c82ac0 |
---|---|
2514 | 2514 |
2515 cmdtable = { | 2515 cmdtable = { |
2516 "qapplied": | 2516 "qapplied": |
2517 (applied, | 2517 (applied, |
2518 [('1', 'last', None, _('show only the last patch'))] + seriesopts, | 2518 [('1', 'last', None, _('show only the last patch'))] + seriesopts, |
2519 _('hg qapplied [-s] [PATCH]')), | 2519 _('hg qapplied [-1] [-s] [PATCH]')), |
2520 "qclone": | 2520 "qclone": |
2521 (clone, | 2521 (clone, |
2522 [('', 'pull', None, _('use pull protocol to copy metadata')), | 2522 [('', 'pull', None, _('use pull protocol to copy metadata')), |
2523 ('U', 'noupdate', None, _('do not update the new working directories')), | 2523 ('U', 'noupdate', None, _('do not update the new working directories')), |
2524 ('', 'uncompressed', None, | 2524 ('', 'uncompressed', None, |
2637 ('n', 'nobackup', None, _('no backups'))], | 2637 ('n', 'nobackup', None, _('no backups'))], |
2638 _('hg strip [-f] [-b] [-n] REV')), | 2638 _('hg strip [-f] [-b] [-n] REV')), |
2639 "qunapplied": | 2639 "qunapplied": |
2640 (unapplied, | 2640 (unapplied, |
2641 [('1', 'first', None, _('show only the first patch'))] + seriesopts, | 2641 [('1', 'first', None, _('show only the first patch'))] + seriesopts, |
2642 _('hg qunapplied [-s] [PATCH]')), | 2642 _('hg qunapplied [-1] [-s] [PATCH]')), |
2643 "qfinish": | 2643 "qfinish": |
2644 (finish, | 2644 (finish, |
2645 [('a', 'applied', None, _('finish all applied changesets'))], | 2645 [('a', 'applied', None, _('finish all applied changesets'))], |
2646 _('hg qfinish [-a] [REV]...')), | 2646 _('hg qfinish [-a] [REV]...')), |
2647 } | 2647 } |