diff mbox series

[v2,5/9] scalar: add to 'git help -a' command list

Message ID 070f195f027e5601b88ca6a0d4c9991b472ad9ab.1662134210.git.gitgitgadget@gmail.com (mailing list archive)
State Accepted
Commit cc75e556a9de5d62c1ca52db900b729fc830f378
Headers show
Series scalar: integrate into core Git | expand

Commit Message

Victoria Dye Sept. 2, 2022, 3:56 p.m. UTC
From: Victoria Dye <vdye@github.com>

Add 'scalar' as a 'mainporcelain' command in the Git command list. Update
the regex in 'cmd-list.perl' used to match the first line of command
documentation to find 'scalar(1)'.

Helped-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Victoria Dye <vdye@github.com>
---
 Documentation/cmd-list.perl | 2 +-
 command-list.txt            | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/Documentation/cmd-list.perl b/Documentation/cmd-list.perl
index af5da45d287..9515a499a31 100755
--- a/Documentation/cmd-list.perl
+++ b/Documentation/cmd-list.perl
@@ -10,7 +10,7 @@  sub format_one {
 	$state = 0;
 	open I, '<', "$name.txt" or die "No such file $name.txt";
 	while (<I>) {
-		if (/^git[a-z0-9-]*\(([0-9])\)$/) {
+		if (/^(git|scalar)[a-z0-9-]*\(([0-9])\)$/) {
 			$mansection = $1;
 			next;
 		}
diff --git a/command-list.txt b/command-list.txt
index f96bdabd7d9..93f94e42ab7 100644
--- a/command-list.txt
+++ b/command-list.txt
@@ -235,3 +235,4 @@  gittutorial                             guide
 gittutorial-2                           guide
 gitweb                                  ancillaryinterrogators
 gitworkflows                            guide
+scalar                                  mainporcelain