Mercurial > public > mercurial-scm > hg
comparison mercurial/commands.py @ 7763:cdc913e7fc5f
log-like commands now use -G for --graph, -g for --git
author | Jim Correia <jim.correia@pobox.com> |
---|---|
date | Sat, 14 Feb 2009 22:41:18 +0100 |
parents | fece056bf240 |
children | da9acc68b1dd |
comparison
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, |