equal
deleted
inserted
replaced
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 } |