From b0048bca17ea900d51a66193a5a701c813934aa8 Mon Sep 17 00:00:00 2001 From: Gabriel Scherer Date: Sun, 22 Oct 2023 17:27:46 +0200 Subject: [PATCH] tutorial.md: no need to mention `heads(x)` anymore Instead we point explicitly at the full documentation on revsets. Suggested-by: Martin von Zweigbergk --- docs/tutorial.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/tutorial.md b/docs/tutorial.md index 70c95d7c5..2554ce6e9 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -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()`, 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