From: Andy Parkins Date: Wed, 14 Feb 2007 11:20:32 +0000 (+0000) Subject: The "table-of-contents" in the update hook script should match the body X-Git-Tag: v1.5.1-rc1~289 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9a894e8e7c85794d39745eb83462a2001816ac3b;p=git.git The "table-of-contents" in the update hook script should match the body 44478d99ee0 introduced a filter using "git-rev-parse --not --all" to the log display to prevent the display of revisions already in the repository. However, the table of contents generation didn't get that same update. This patch fixes that. The table of contents before the log and the log now both display the same list of revisions. Signed-off-by: Andy Parkins Signed-off-by: Junio C Hamano --- diff --git a/templates/hooks--update b/templates/hooks--update index a7cf604dd..fd1f73d6a 100644 --- a/templates/hooks--update +++ b/templates/hooks--update @@ -57,7 +57,7 @@ announcerecipients=$(git-repo-config hooks.announcelist) allowunannotated=$(git-repo-config --bool hooks.allowunannotated) # --- Check types -newrev_type=$(git-cat-file -t "$newrev") +newrev_type=$(git-cat-file -t $newrev) case "$refname","$newrev_type" in refs/tags/*,commit) @@ -165,7 +165,7 @@ case "$refname_type" in baserev=$(git-merge-base $oldrev $newrev) # Commit with a parent - for rev in $(git-rev-list $newrev ^$baserev) + for rev in $(git-rev-parse --not --all | git-rev-list --stdin $newrev ^$baserev) do revtype=$(git-cat-file -t "$rev") echo " via $rev ($revtype)"