comparison hgext/purge.py @ 9215:f6a880fa9cd7

purge: fix formatting of lists with proper reST markup
author Martin Geisler <mg@lazybytes.net>
date Thu, 23 Jul 2009 00:25:34 +0200
parents 59e5437bbcdc
children 00cc7fa0c0c6
comparison
equal deleted inserted replaced
9214:b1b0c845ba6e 9215:f6a880fa9cd7
34 34
35 Delete files not known to Mercurial. This is useful to test local and 35 Delete files not known to Mercurial. This is useful to test local and
36 uncommitted changes in an otherwise-clean source tree. 36 uncommitted changes in an otherwise-clean source tree.
37 37
38 This means that purge will delete: 38 This means that purge will delete:
39 - Unknown files: files marked with "?" by "hg status" 39
40 - Empty directories: in fact Mercurial ignores directories unless they 40 - Unknown files: files marked with "?" by "hg status"
41 contain files under source control management 41 - Empty directories: in fact Mercurial ignores directories unless they
42 contain files under source control management
43
42 But it will leave untouched: 44 But it will leave untouched:
43 - Modified and unmodified tracked files 45
44 - Ignored files (unless --all is specified) 46 - Modified and unmodified tracked files
45 - New files added to the repository (with "hg add") 47 - Ignored files (unless --all is specified)
48 - New files added to the repository (with "hg add")
46 49
47 If directories are given on the command line, only files in these 50 If directories are given on the command line, only files in these
48 directories are considered. 51 directories are considered.
49 52
50 Be careful with purge, as you could irreversibly delete some files you 53 Be careful with purge, as you could irreversibly delete some files you