summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2025-09-12 10:41:20 -0700
committerJunio C Hamano <gitster@pobox.com>2025-09-12 10:41:20 -0700
commited19b95d016c82127e29627992a61b815a753d5a (patch)
tree69790e23b9b9b1e23755327fa68788977961a53e
parentca3999d1dbf5bfcd70507910a1f28d1963e8531f (diff)
parent2f4bf83ffc4ffd0a9ed13121d712beb4c1b9f276 (diff)
Merge branch 'km/alias-doc-markup-fix'
Docfix. * km/alias-doc-markup-fix: doc: fix formatting of function-wrap shell alias
-rw-r--r--Documentation/config/alias.adoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/config/alias.adoc b/Documentation/config/alias.adoc
index 2c5db0ad84..95825354bf 100644
--- a/Documentation/config/alias.adoc
+++ b/Documentation/config/alias.adoc
@@ -38,6 +38,6 @@ it will be treated as a shell command. For example, defining
** A convenient way to deal with this is to write your script
operations in an inline function that is then called with any
arguments from the command-line. For example `alias.cmd = "!c() {
- echo $1 | grep $2 ; }; c" will correctly execute the prior example.
+ echo $1 | grep $2 ; }; c"` will correctly execute the prior example.
** Setting `GIT_TRACE=1` can help you debug the command being run for
your alias.