Mercurial > public > mercurial-scm > hg-stable
diff hgext/purge/__init__.py @ 2381:ab7a438294fc
Rewritten install instructions for hg-purge to match new situation, fixed typos.
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 02 Jun 2006 00:28:28 +0200 |
parents | e90cff87f871 |
children | b429566d1994 |
line wrap: on
line diff
--- a/hgext/purge/__init__.py Thu Jun 01 23:58:43 2006 +0200 +++ b/hgext/purge/__init__.py Fri Jun 02 00:28:28 2006 +0200 @@ -104,7 +104,7 @@ def _split_path(self, path): ''' - Retruns a list of the single files/directories in "path". + Returns a list of the single files/directories in "path". For instance: '/home/user/test' -> ['/', 'home', 'user', 'test'] 'C:\\Mercurial' -> ['C:\\', 'Mercurial'] @@ -144,7 +144,7 @@ - Unknown files: files marked with "?" by "hg status" - Ignored files: files usually ignored by Mercurial because they match a pattern in a ".hgignore" file - - Empty directories: infact Mercurial ignores directories unless they + - Empty directories: in fact Mercurial ignores directories unless they contain files under source control managment But it will leave untouched: - Unmodified tracked files @@ -156,7 +156,7 @@ Be careful with purge, you could irreversibly delete some files you forgot to add to the repository. If you only want to print the list of - files that this program would delete use the -vn options. + files that this program would delete use the --print option. ''' act = not opts['print'] abort_on_err = bool(opts['abort_on_err'])