# HG changeset patch # User Martin Geisler # Date 2009-07-22 22:25:34 # Node ID f6a880fa9cd7a3abefc7a3306a885ac1b3d6ce90 # Parent b1b0c845ba6e0e9c67fc8739411626c6e4ec4ba9 purge: fix formatting of lists with proper reST markup diff --git a/hgext/purge.py b/hgext/purge.py --- a/hgext/purge.py +++ b/hgext/purge.py @@ -36,13 +36,16 @@ def purge(ui, repo, *dirs, **opts): uncommitted changes in an otherwise-clean source tree. This means that purge will delete: - - Unknown files: files marked with "?" by "hg status" - - Empty directories: in fact Mercurial ignores directories unless they - contain files under source control management + + - Unknown files: files marked with "?" by "hg status" + - Empty directories: in fact Mercurial ignores directories unless they + contain files under source control management + But it will leave untouched: - - Modified and unmodified tracked files - - Ignored files (unless --all is specified) - - New files added to the repository (with "hg add") + + - Modified and unmodified tracked files + - Ignored files (unless --all is specified) + - New files added to the repository (with "hg add") If directories are given on the command line, only files in these directories are considered.