From f458eb55989367133383dbd4e5bed348c1900f5b Mon Sep 17 00:00:00 2001 From: Wilfred Hughes Date: Mon, 6 Oct 2025 22:25:03 +0100 Subject: [PATCH] Document mercurial alias Fixes #887 --- manual/src/mercurial.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/manual/src/mercurial.md b/manual/src/mercurial.md index 6a6698688..228557f13 100644 --- a/manual/src/mercurial.md +++ b/manual/src/mercurial.md @@ -40,4 +40,9 @@ hg dft -r .^ -r . ``` This is equivalent to `hg log -l 1 -p`, although it does not show the -commit message. +commit message. I like to define an alias for this: + +``` +[alias] +dp = dft -r .^ -r . +```