diff options
author | Christian Couder <chriscool@tuxfamily.org> | 2008-06-06 09:07:32 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-06-06 11:18:28 -0700 |
commit | 9e1f0a85c68323830ea117092c55192b17aa3ac8 (patch) | |
tree | dd62fa819c738b3d2255f9f97c50db5e69b4fcfb /Documentation/Makefile | |
parent | 30eba7bf2caa327b4251d66bf7157dda97512e96 (diff) | |
download | git-9e1f0a85c68323830ea117092c55192b17aa3ac8.tar.gz git-9e1f0a85c68323830ea117092c55192b17aa3ac8.tar.xz |
documentation: move git(7) to git(1)
As the "git" man page describes the "git" command at the end-user
level, it seems better to move it to man section 1.
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/Makefile')
-rw-r--r-- | Documentation/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Documentation/Makefile b/Documentation/Makefile index 5bd0e7c76..62269e39c 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -1,10 +1,10 @@ MAN1_TXT= \ $(filter-out $(addsuffix .txt, $(ARTICLES) $(SP_ARTICLES)), \ $(wildcard git-*.txt)) \ - gitk.txt + gitk.txt git.txt MAN5_TXT=gitattributes.txt gitignore.txt gitmodules.txt githooks.txt \ gitrepository-layout.txt -MAN7_TXT=git.txt gitcli.txt gittutorial.txt gittutorial-2.txt \ +MAN7_TXT=gitcli.txt gittutorial.txt gittutorial-2.txt \ gitcvs-migration.txt gitcore-tutorial.txt gitglossary.txt \ gitdiffcore.txt @@ -139,8 +139,6 @@ cmd-list.made: cmd-list.perl ../command-list.txt $(MAN1_TXT) $(PERL_PATH) ./cmd-list.perl ../command-list.txt date >$@ -git.7 git.html: git.txt - clean: $(RM) *.xml *.xml+ *.html *.html+ *.1 *.5 *.7 $(RM) *.texi *.texi+ git.info gitman.info |