Mercurial > hg
comparison hgext/purge.py @ 8617:7af21dfae9d5
purge: fix spelling error
author | Cédric Duval <cedricduval@free.fr> |
---|---|
date | Sun, 24 May 2009 22:17:12 +0200 |
parents | a1a5a57efe90 |
children | 0289f384e1e5 |
comparison
equal
deleted
inserted
replaced
8616:704833724ff6 | 8617:7af21dfae9d5 |
---|---|
38 and uncommitted changes in an otherwise-clean source tree. | 38 and uncommitted changes in an otherwise-clean source tree. |
39 | 39 |
40 This means that purge will delete: | 40 This means that purge will delete: |
41 - Unknown files: files marked with "?" by "hg status" | 41 - Unknown files: files marked with "?" by "hg status" |
42 - Empty directories: in fact Mercurial ignores directories unless | 42 - Empty directories: in fact Mercurial ignores directories unless |
43 they contain files under source control managment | 43 they contain files under source control management |
44 But it will leave untouched: | 44 But it will leave untouched: |
45 - Modified and unmodified tracked files | 45 - Modified and unmodified tracked files |
46 - Ignored files (unless --all is specified) | 46 - Ignored files (unless --all is specified) |
47 - New files added to the repository (with "hg add") | 47 - New files added to the repository (with "hg add") |
48 | 48 |