##// 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 586 def contains(repo, subset, x):
587 587 """``contains(pattern)``
588 Revision contains a file matching pattern. See :hg:`help patterns`
589 for information about file patterns.
588 The revision's manifest contains a file matching pattern (but might not
589 modify it). See :hg:`help patterns` for information about file patterns.
590 590
591 591 The pattern without explicit kind like ``glob:`` is expected to be
592 592 relative to the current directory and match against a file exactly
@@ -784,9 +784,10 b' def filelog(repo, subset, x):'
784 784 """``filelog(pattern)``
785 785 Changesets connected to the specified filelog.
786 786
787 For performance reasons, ``filelog()`` does not show every changeset
788 that affects the requested file(s). See :hg:`help log` for details. For
789 a slower, more accurate result, use ``file()``.
787 For performance reasons, visits only revisions mentioned in the file-level
788 filelog, rather than filtering through all changesets (much faster, but
789 doesn't include deletes or duplicate changes). For a slower, more accurate
790 result, use ``file()``.
790 791
791 792 The pattern without explicit kind like ``glob:`` is expected to be
792 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