Mercurial > public > mercurial-scm > hg
diff mercurial/commands.py @ 8991:7e0b31dfc66f
branches: add --closed flag for consistency with heads
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Wed, 01 Jul 2009 00:31:59 -0500 |
parents | 8358cf63f612 |
children | ff7d899a7a71 |
line wrap: on
line diff
--- a/mercurial/commands.py Tue Jun 30 23:25:53 2009 -0500 +++ b/mercurial/commands.py Wed Jul 01 00:31:59 2009 -0500 @@ -436,16 +436,19 @@ else: ui.write("%s\n" % encoding.tolocal(repo.dirstate.branch())) -def branches(ui, repo, active=False): +def branches(ui, repo, active=False, closed=False): """list repository named branches List the repository's named branches, indicating which ones are - inactive. If -a/--active is specified, only show active branches. - - A branch is considered active if it contains repository heads. + inactive. If -c/--closed is specified, also list branches which have + been marked closed (see hg commit --close-branch). + + If -a/--active is specified, only show active branches. A branch + is considered active if it contains repository heads. Use the command 'hg update' to switch to an existing branch. """ + hexfunc = ui.debugflag and hex or short activebranches = [encoding.tolocal(repo[n].branch()) for n in repo.heads()] @@ -466,6 +469,8 @@ if isactive: notice = '' elif hn not in repo.branchheads(tag, closed=False): + if not closed: + continue notice = ' (closed)' else: notice = ' (inactive)' @@ -3205,7 +3210,9 @@ "branches": (branches, [('a', 'active', False, - _('show only branches that have unmerged heads'))], + _('show only branches that have unmerged heads')), + ('c', 'closed', False, + _('show normal and closed heads'))], _('[-a]')), "bundle": (bundle,