##// END OF EJS Templates
help: clarify distinction among `contains`/`file`/`filelog`...
Greg Hurrell -
r21199:e9c2f76b stable
parent child Browse files
Show More
@@ -585,8 +585,8 b' def closed(repo, subset, x):'
585
585
586 def contains(repo, subset, x):
586 def contains(repo, subset, x):
587 """``contains(pattern)``
587 """``contains(pattern)``
588 Revision contains a file matching pattern. See :hg:`help patterns`
588 The revision's manifest contains a file matching pattern (but might not
589 for information about file patterns.
589 modify it). See :hg:`help patterns` for information about file patterns.
590
590
591 The pattern without explicit kind like ``glob:`` is expected to be
591 The pattern without explicit kind like ``glob:`` is expected to be
592 relative to the current directory and match against a file exactly
592 relative to the current directory and match against a file exactly
@@ -784,9 +784,10 b' def filelog(repo, subset, x):'
784 """``filelog(pattern)``
784 """``filelog(pattern)``
785 Changesets connected to the specified filelog.
785 Changesets connected to the specified filelog.
786
786
787 For performance reasons, ``filelog()`` does not show every changeset
787 For performance reasons, visits only revisions mentioned in the file-level
788 that affects the requested file(s). See :hg:`help log` for details. For
788 filelog, rather than filtering through all changesets (much faster, but
789 a slower, more accurate result, use ``file()``.
789 doesn't include deletes or duplicate changes). For a slower, more accurate
790 result, use ``file()``.
790
791
791 The pattern without explicit kind like ``glob:`` is expected to be
792 The pattern without explicit kind like ``glob:`` is expected to be
792 relative to the current directory and match against a file exactly
793 relative to the current directory and match against a file exactly
General Comments 0
You need to be logged in to leave comments. Login now