From 41e79c955969c916c0691c31422b5004db7e4025 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Tue, 24 Jan 2006 17:37:01 -0800 Subject: sample update-hook: sanely handle a new branch head. Instead of showing all the history since the beginning of time leading to the the branch head, show only the changes this new branch brings to the world. This originally came from Linus and tested by Andreas Ericsson. Signed-off-by: Junio C Hamano --- templates/hooks--update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'templates') diff --git a/templates/hooks--update b/templates/hooks--update index 27cea174d1..d7a8f0a849 100644 --- a/templates/hooks--update +++ b/templates/hooks--update @@ -68,7 +68,7 @@ then refs/heads/*) branch="${1##refs/heads/}" echo "New branch '$branch' available with the following commits:" - git-rev-list --pretty "$3" + git-rev-list --pretty "$3" $(git-rev-parse --not --all) ;; esac else -- cgit v1.2.3