# HG changeset patch # User Matt Mackall # Date 2012-01-28 00:43:41 # Node ID f2c49d9dee5783fa3a3aad76f56e9bbc60e88585 # Parent c7811ca6fb9401d7592ffaa0b14197d73c552020 help: add examples to phases topic diff --git a/mercurial/help/phases.txt b/mercurial/help/phases.txt --- a/mercurial/help/phases.txt +++ b/mercurial/help/phases.txt @@ -58,4 +58,23 @@ See :hg:`help config` for more informati Servers running older versions of Mercurial are treated as publishing. -See :hg:`help phase` for information on manually manipulating phases. +Examples +-------- + + - list changesets in draft or secret phase:: + + hg log -r "not public()" + + - change all secret changesets to draft:: + + hg phase --draft "secret()" + + - forcibly move the current changeset and descendants from public to draft:: + + hg phase --force --draft . + + - show a list of changeset revision and phase:: + + hg log --template "{rev} {phase}\n" + +See :hg:`help phase` for more information on manually manipulating phases.