mercurial/commands.py
changeset 7763 cdc913e7fc5f
parent 7762 fece056bf240
child 7765 da9acc68b1dd
equal deleted inserted replaced
7762:fece056bf240 7763:cdc913e7fc5f
  2999     ('', 'template', '', _('display with template')),
  2999     ('', 'template', '', _('display with template')),
  3000 ]
  3000 ]
  3001 
  3001 
  3002 logopts = [
  3002 logopts = [
  3003     ('p', 'patch', None, _('show patch')),
  3003     ('p', 'patch', None, _('show patch')),
  3004     ('',  'git', None, _('use git extended diff format')),
  3004     ('g', 'git', None, _('use git extended diff format')),
  3005     ('l', 'limit', '', _('limit number of changes displayed')),
  3005     ('l', 'limit', '', _('limit number of changes displayed')),
  3006     ('M', 'no-merges', None, _('do not show merges')),
  3006     ('M', 'no-merges', None, _('do not show merges')),
  3007 ] + templateopts
  3007 ] + templateopts
  3008 
  3008 
  3009 diffopts = [
  3009 diffopts = [
  3390          _('[-l] [-m TEXT] [-d DATE] [-u USER] [-r REV] NAME...')),
  3390          _('[-l] [-m TEXT] [-d DATE] [-u USER] [-r REV] NAME...')),
  3391     "tags": (tags, []),
  3391     "tags": (tags, []),
  3392     "tip":
  3392     "tip":
  3393         (tip,
  3393         (tip,
  3394          [('p', 'patch', None, _('show patch')),
  3394          [('p', 'patch', None, _('show patch')),
  3395           ('',  'git', None, _('use git extended diff format')),
  3395           ('g', 'git', None, _('use git extended diff format')),
  3396          ] + templateopts,
  3396          ] + templateopts,
  3397          _('[-p]')),
  3397          _('[-p]')),
  3398     "unbundle":
  3398     "unbundle":
  3399         (unbundle,
  3399         (unbundle,
  3400          [('u', 'update', None,
  3400          [('u', 'update', None,