tutorial.md: no need to mention heads(x) anymore

Instead we point explicitly at the full documentation on revsets.

Suggested-by: Martin von Zweigbergk <martinvonz@google.com>
This commit is contained in:
Gabriel Scherer 2023-10-22 17:27:46 +02:00
parent 8ade4d083a
commit b0048bca17

View file

@ -161,9 +161,8 @@ function in the revset matches it.
There are also operators for getting the parents (`foo-`), children (`foo+`),
ancestors (`::foo`), descendants (`foo::`), DAG range (`foo::bar`, like
`git log --ancestry-path`), range (`foo..bar`, same as Git's). There are also a
few more functions, such as `heads(<set>)`, which filters out revisions in the
input set if they're ancestors of other revisions in the set.
`git log --ancestry-path`), range (`foo..bar`, same as Git's). See
[the revset documentation](revsets.md) for all revset operators and functions.
## Conflicts