[PATCH] Document the -v option for qseries, which prints an ordinal and the status of each patch in the queue

Benjamin Smedberg benjamin at smedbergs.us
Mon Mar 24 10:29:41 CDT 2008


# HG changeset patch
# User Benjamin Smedberg <benjamin at smedbergs.us>
# Date 1206372580 14400
# Node ID de4d3a97f127204d7655517ebf14ebbb783e16fc
# Parent  d2713d90252426a1cc2404fc0b4fa4d6c1360d03
Document the -v option for qseries, which prints an ordinal and the status of each patch in the queue.

diff --git a/hgext/mq.py b/hgext/mq.py
--- a/hgext/mq.py
+++ b/hgext/mq.py
@@ -2226,7 +2226,8 @@ def reposetup(ui, repo):
         repo.__class__ = mqrepo
         repo.mq = queue(ui, repo.join(""))
 
-seriesopts = [('s', 'summary', None, _('print first line of patch header'))]
+seriesopts = [('s', 'summary', None, _('print first line of patch header')),
+              ('v', 'verbose', None, _('print the patch status'))]
 
 headeropts = [
     ('U', 'currentuser', None, _('add "From: <current user>" to patch')),
@@ -2343,7 +2344,7 @@ cmdtable = {
         (series,
          [('m', 'missing', None, _('print patches not in series')),
          ] + seriesopts,
-         _('hg qseries [-ms]')),
+         _('hg qseries [-msv]')),
     "^strip":
         (strip,
          [('b', 'backup', None, _('bundle unrelated changesets')),


More information about the Mercurial-devel mailing list