# HG changeset patch # User Martin von Zweigbergk # Date 2020-07-15 20:19:09 # Node ID 81859d38e00901c1a16565163278f761be6816ef # Parent 9d532329ee97bf19e5f41b3bb9169c06feebf897 purge: classify as a "working directory management" command in help It seems to me that `hg purge` is clearly a "working directory management" command and not a "repository management" command. The working copy is all that's affected, after all; the repo is not affected at all. Differential Revision: https://phab.mercurial-scm.org/D8757 diff --git a/hgext/purge.py b/hgext/purge.py --- a/hgext/purge.py +++ b/hgext/purge.py @@ -64,7 +64,7 @@ testedwith = b'ships-with-hg-core' ] + cmdutil.walkopts, _(b'hg purge [OPTION]... [DIR]...'), - helpcategory=command.CATEGORY_MAINTENANCE, + helpcategory=command.CATEGORY_WORKING_DIRECTORY, ) def purge(ui, repo, *dirs, **opts): '''removes files not tracked by Mercurial