hgext/graphlog.py
changeset 11321 40c06bbf58be
parent 11301 3d0591a66118
child 11448 25430ff23cfa
equal deleted inserted replaced
11320:e4274f9f97c8 11321:40c06bbf58be
   368     entry[1].append(('G', 'graph', None, _("show the revision DAG")))
   368     entry[1].append(('G', 'graph', None, _("show the revision DAG")))
   369 
   369 
   370 cmdtable = {
   370 cmdtable = {
   371     "glog":
   371     "glog":
   372         (graphlog,
   372         (graphlog,
   373          [('l', 'limit', '', _('limit number of changes displayed')),
   373          [('l', 'limit', '',
       
   374            _('limit number of changes displayed'), _('NUM')),
   374           ('p', 'patch', False, _('show patch')),
   375           ('p', 'patch', False, _('show patch')),
   375           ('r', 'rev', [], _('show the specified revision or range')),
   376           ('r', 'rev', [],
       
   377            _('show the specified revision or range'), _('REV')),
   376          ] + templateopts,
   378          ] + templateopts,
   377          _('hg glog [OPTION]... [FILE]')),
   379          _('hg glog [OPTION]... [FILE]')),
   378 }
   380 }