diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-12-01 23:39:19 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-12-01 23:48:28 -0800 |
commit | 79d30668ab5c5e029c89c8aa2e466d2320658f5a (patch) | |
tree | b77a5494a9f126e044b23a682b51cde71614a3c1 /Documentation/Makefile | |
parent | ca8c8c56860e93de4fc3acc9d66b2269a9ccc2f1 (diff) | |
download | git-79d30668ab5c5e029c89c8aa2e466d2320658f5a.tar.gz |
Consolidate command list to one.
The categorized list of commands in git(7) and the list of common
commands in "git help" output were maintained separately, which was
insane. This consolidates them to a single command-list.txt file.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/Makefile')
-rw-r--r-- | Documentation/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/Makefile b/Documentation/Makefile index d88664177d..de11ee0192 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -122,9 +122,9 @@ cmds_txt = cmds-ancillaryinterrogators.txt \ $(cmds_txt): cmd-list.made -cmd-list.made: cmd-list.perl $(MAN1_TXT) +cmd-list.made: cmd-list.perl ../command-list.txt $(MAN1_TXT) $(RM) $@ - perl ./cmd-list.perl + perl ./cmd-list.perl ../command-list.txt date >$@ git.7 git.html: git.txt |