Mercurial > public > mercurial-scm > hg
comparison mercurial/commands.py @ 15073:19071b04c9c1 stable
log: remove -h short option for --hidden (issue2995)
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Fri, 09 Sep 2011 14:41:22 -0500 |
parents | 39eb2e86fb11 |
children | d30ec2d16c5a |
comparison
equal
deleted
inserted
replaced
15071:ad6eb7d7dbca | 15073:19071b04c9c1 |
---|---|
3345 _('BRANCH')), | 3345 _('BRANCH')), |
3346 ('b', 'branch', [], | 3346 ('b', 'branch', [], |
3347 _('show changesets within the given named branch'), _('BRANCH')), | 3347 _('show changesets within the given named branch'), _('BRANCH')), |
3348 ('P', 'prune', [], | 3348 ('P', 'prune', [], |
3349 _('do not display revision or any of its ancestors'), _('REV')), | 3349 _('do not display revision or any of its ancestors'), _('REV')), |
3350 ('h', 'hidden', False, _('show hidden changesets')), | 3350 ('', 'hidden', False, _('show hidden changesets')), |
3351 ] + logopts + walkopts, | 3351 ] + logopts + walkopts, |
3352 _('[OPTION]... [FILE]')) | 3352 _('[OPTION]... [FILE]')) |
3353 def log(ui, repo, *pats, **opts): | 3353 def log(ui, repo, *pats, **opts): |
3354 """show revision history of entire repository or files | 3354 """show revision history of entire repository or files |
3355 | 3355 |