From: Knut Harald Ryager <e-k-nut@xxxxxxxxxxx> [--filter=<filter> [--also-filter-submodules]] instead of [--filter=<filter>] [--also-filter-submodules]] Signed-off-by: Knut Harald Ryager <e-k-nut@xxxxxxxxxxx> --- Remove excess right bracket from git-clone docs Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-git-2023%2FKnutRyager%2Fmaster-v2 Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-git-2023/KnutRyager/master-v2 Pull-Request: https://github.com/git/git/pull/2023 Range-diff vs v1: 1: 6bb5c653356 ! 1: bb158425b8a docs: remove stray bracket from git-clone synopsis @@ ## Metadata ## -Author: E-K-n <e-k-nut@xxxxxxxxxxx> +Author: Knut Harald Ryager <e-k-nut@xxxxxxxxxxx> ## Commit message ## - docs: remove stray bracket from git-clone synopsis + Remove the extra and incorrect closing bracket, so that the line reads: - The git-clone documentation contained an extra ‘]’ after - `--also-filter-submodules]`. + [--filter=<filter> [--also-filter-submodules]] - This patch removes the duplicate ‘]’ so that the line reads: + instead of - [--also-filter-submodules] [--] <repository> - - instead of: - - [--also-filter-submodules]] [--] <repository> + [--filter=<filter>] [--also-filter-submodules]] Signed-off-by: Knut Harald Ryager <e-k-nut@xxxxxxxxxxx> @@ Documentation/git-clone.adoc: git clone [--template=<template-directory>] [--recurse-submodules[=<pathspec>]] [--[no-]shallow-submodules] [--[no-]remote-submodules] [--jobs <n>] [--sparse] [--[no-]reject-shallow] - [--filter=<filter-spec>] [--also-filter-submodules]] [--] <repository> -+ [--filter=<filter-spec>] [--also-filter-submodules] [--] <repository> ++ [--filter=<filter-spec> [--also-filter-submodules]] [--] <repository> [<directory>] DESCRIPTION Documentation/git-clone.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/git-clone.adoc b/Documentation/git-clone.adoc index 222d558290e..d829206d1b5 100644 --- a/Documentation/git-clone.adoc +++ b/Documentation/git-clone.adoc @@ -16,7 +16,7 @@ git clone [--template=<template-directory>] [--depth <depth>] [--[no-]single-branch] [--[no-]tags] [--recurse-submodules[=<pathspec>]] [--[no-]shallow-submodules] [--[no-]remote-submodules] [--jobs <n>] [--sparse] [--[no-]reject-shallow] - [--filter=<filter-spec>] [--also-filter-submodules]] [--] <repository> + [--filter=<filter-spec> [--also-filter-submodules]] [--] <repository> [<directory>] DESCRIPTION base-commit: e813a0200a7121b97fec535f0d0b460b0a33356c -- gitgitgadget