comparison mercurial/commands.py @ 16869:00e1e40d709c stable

help: drop -a from heads syntax summary (issue3483)
author Matt Mackall <mpm@selenic.com>
date Mon, 04 Jun 2012 17:22:09 -0500
parents 9c86ef980d9e
children d566aa319d5f 6e578e77cbe6
comparison
equal deleted inserted replaced
16850:9c86ef980d9e 16869:00e1e40d709c
2948 _('show only heads which are descendants of STARTREV'), _('STARTREV')), 2948 _('show only heads which are descendants of STARTREV'), _('STARTREV')),
2949 ('t', 'topo', False, _('show topological heads only')), 2949 ('t', 'topo', False, _('show topological heads only')),
2950 ('a', 'active', False, _('show active branchheads only (DEPRECATED)')), 2950 ('a', 'active', False, _('show active branchheads only (DEPRECATED)')),
2951 ('c', 'closed', False, _('show normal and closed branch heads')), 2951 ('c', 'closed', False, _('show normal and closed branch heads')),
2952 ] + templateopts, 2952 ] + templateopts,
2953 _('[-ac] [-r STARTREV] [REV]...')) 2953 _('[-ct] [-r STARTREV] [REV]...'))
2954 def heads(ui, repo, *branchrevs, **opts): 2954 def heads(ui, repo, *branchrevs, **opts):
2955 """show current repository heads or show branch heads 2955 """show current repository heads or show branch heads
2956 2956
2957 With no arguments, show all repository branch heads. 2957 With no arguments, show all repository branch heads.
2958 2958