# HG changeset patch # User Pierre-Yves David # Date 1654269526 -7200 # Node ID 3b102efde517c803a2adf68f8257efecc7e23b40 # Parent b5fe10b3c9f50d7fddb5177a97f789caf96385a7 revset: fix the doc of "nodefromfile" This should maybe be called "nodesfromfile", but at least the documentation is correct (it was previously a copy past from follow). diff -r b5fe10b3c9f5 -r 3b102efde517 mercurial/revset.py --- a/mercurial/revset.py Thu Jun 02 04:39:49 2022 +0200 +++ b/mercurial/revset.py Fri Jun 03 17:18:46 2022 +0200 @@ -1338,10 +1338,12 @@ @predicate(b'nodefromfile(path)') def nodefromfile(repo, subset, x): - """ - An alias for ``::.`` (ancestors of the working directory's first parent). - If file pattern is specified, the histories of files matching given - pattern in the revision given by startrev are followed, including copies. + """Read a list of nodes from the file at `path`. + + This applies `id(LINE)` to each line of the file. + + This is useful when the amount of nodes you need to specify gets too large + for the command line. """ path = getstring(x, _(b"nodefromfile require a file path")) listed_rev = set()