command-list: prepare machinery for upcoming "common groups" section

The ultimate goal is for "git help" to classify common commands by
group. Toward this end, a subsequent patch will add a new "common
groups" section to command-list.txt preceding the actual command list.
As preparation, teach existing command-list.txt parsing machinery, which
doesn't care about grouping, to skip over this upcoming "common groups"
section.

Signed-off-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Sébastien Guimmara <sebastien.guimmara@gmail.com>
Reviewed-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Eric Sunshine 2015-05-21 19:39:18 +02:00 committed by Junio C Hamano
parent bf990a29a0
commit 11c6659d85
3 changed files with 8 additions and 3 deletions

View file

@ -38,6 +38,10 @@ sub format_one {
} }
} }
while (<>) {
last if /^### command list/;
}
my %cmds = (); my %cmds = ();
for (sort <>) { for (sort <>) {
next if /^#/; next if /^#/;

View file

@ -2447,7 +2447,7 @@ check-docs::
esac ; \ esac ; \
test -f "Documentation/$$v.txt" || \ test -f "Documentation/$$v.txt" || \
echo "no doc: $$v"; \ echo "no doc: $$v"; \
sed -e '/^#/d' command-list.txt | \ sed -e '1,/^### command list/d' -e '/^#/d' command-list.txt | \
grep -q "^$$v[ ]" || \ grep -q "^$$v[ ]" || \
case "$$v" in \ case "$$v" in \
git) ;; \ git) ;; \
@ -2455,7 +2455,8 @@ check-docs::
esac ; \ esac ; \
done; \ done; \
( \ ( \
sed -e '/^#/d' \ sed -e '1,/^### command list/d' \
-e '/^#/d' \
-e 's/[ ].*//' \ -e 's/[ ].*//' \
-e 's/^/listed /' command-list.txt; \ -e 's/^/listed /' command-list.txt; \
$(MAKE) -C Documentation print-man1 | \ $(MAKE) -C Documentation print-man1 | \

View file

@ -1,4 +1,4 @@
# List of known git commands. ### command list (do not change this line)
# command name category [deprecated] [common] # command name category [deprecated] [common]
git-add mainporcelain common git-add mainporcelain common
git-am mainporcelain git-am mainporcelain