# HG changeset patch # User Augie Fackler # Date 1443206437 14400 # Node ID 8b2a2f63e7998fdfa7b61ef10b35cbde060f04d4 # Parent 354d05616d6550b55541b8c16ec42e88a69ac324 hg: hide closed branches from 'hg sl' Noticed this while tinkering with the Subversion repo using hgsubversion. diff --git a/.hgrc b/.hgrc --- a/.hgrc +++ b/.hgrc @@ -80,4 +80,4 @@ desc.here = inverse [revsetalias] canmutate = not (public() or upstream()) -smart = (parents(canmutate) or canmutate or . or head()) and (not obsolete() or unstable()^) +smart = (parents(canmutate) or canmutate or . or (head() - closed())) and (not obsolete() or unstable()^)