summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: c16e30c)
raw | patch | inline | side by side (parent: c16e30c)
author | Junio C Hamano <junkio@cox.net> | |
Thu, 13 Apr 2006 07:17:19 +0000 (00:17 -0700) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Thu, 13 Apr 2006 07:21:47 +0000 (00:21 -0700) |
This target lists undocumented commands, and/or whose document
is not referenced from the main git documentation.
For now, there are some exceptions I added primarily because I
lack the energy to document them myself:
- merge backends (we should really document them)
- ssh-push/ssh-pull (does anybody still use them?)
- annotate and blame (maybe after one of them eats the other ;-)
Signed-off-by: Junio C Hamano <junkio@cox.net>
is not referenced from the main git documentation.
For now, there are some exceptions I added primarily because I
lack the energy to document them myself:
- merge backends (we should really document them)
- ssh-push/ssh-pull (does anybody still use them?)
- annotate and blame (maybe after one of them eats the other ;-)
Signed-off-by: Junio C Hamano <junkio@cox.net>
Makefile | patch | blob | history |
diff --git a/Makefile b/Makefile
index e6ef41d70240c242d1bfab244067d04518a4d552..1130af4f3809610436f4c5d17c3970a947ddae5c 100644 (file)
--- a/Makefile
+++ b/Makefile
.PHONY: all install clean strip
.PHONY: .FORCE-GIT-VERSION-FILE TAGS tags
+### Check documentation
+#
+check-docs::
+ @for v in $(ALL_PROGRAMS) $(BUILT_INS) git$X gitk; \
+ do \
+ case "$$v" in \
+ git-annotate | git-blame | \
+ git-merge-octopus | git-merge-ours | git-merge-recursive | \
+ git-merge-resolve | git-merge-stupid | \
+ git-ssh-pull | git-ssh-push ) continue ;; \
+ esac ; \
+ test -f "Documentation/$$v.txt" || \
+ echo "no doc: $$v"; \
+ grep -q "^gitlink:$$v\[[0-9]\]::" Documentation/git.txt || \
+ case "$$v" in \
+ git) ;; \
+ *) echo "no link: $$v";; \
+ esac ; \
+ done | sort
+