diff options
author | Junio C Hamano <junkio@cox.net> | 2007-02-13 22:48:32 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-02-13 22:48:32 -0800 |
commit | ddfff2665150f6194944864c96649cce08ac4fbd (patch) | |
tree | 9368db666d018d9b13f282f50304fb1ad3a70d5b /Makefile | |
parent | 859f9c45814afae3250424946e2156ea366224f7 (diff) | |
parent | 4b02c5290e410e6bbb58b507942f722dff9d76a8 (diff) | |
download | git-ddfff2665150f6194944864c96649cce08ac4fbd.tar.gz |
Merge branch 'maint'
* maint:
Makefile: update check-docs target
cmd-list: add git-remote
Documentation: Drop full-stop from git-fast-import title.
Minor corrections to release notes
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -939,11 +939,14 @@ check-docs:: case "$$v" in \ git-merge-octopus | git-merge-ours | git-merge-recursive | \ git-merge-resolve | git-merge-stupid | \ + git-add--interactive | git-fsck-objects | git-init-db | \ + git-repo-config | \ 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 || \ + sed -e '1,/^__DATA__/d' Documentation/cmd-list.perl | \ + grep -q "^$$v[ ]" || \ case "$$v" in \ git) ;; \ *) echo "no link: $$v";; \ |